action stream_io_api_delete_role { label: "Delete role" description: "Deletes custom role" provider: stream_io_api method: DELETE path: "/roles/{name}" encoding: json input: { type: "object" properties: { name: { type: "string" } } required: ["name"] additionalProperties: false } output: { type: "object" required: ["duration"] properties: { duration: { type: "string" description: "Duration of the request in human-readable format" } } } }