action id4i_create_organization { label: "Create organization" description: "Creating a new organization." provider: id4i method: POST path: "/api/v1/organizations" encoding: json input: { type: "object" description: "An organization" required: ["name", "namespace"] properties: { id: { type: "integer" format: "int64" description: "The id of the organization ( Deprecated: Use namespace instead. )" } logoURL: { type: "string" description: "URL to a logo of the organization" } name: { type: "string" description: "The name of the organization" } namespace: { type: "string" description: "The namespace of the organization" } } } output: { type: "object" description: "An organization" required: ["name", "namespace"] properties: { id: { type: "integer" format: "int64" description: "The id of the organization ( Deprecated: Use namespace instead. )" } logoURL: { type: "string" description: "URL to a logo of the organization" } name: { type: "string" description: "The name of the organization" } namespace: { type: "string" description: "The namespace of the organization" } } } }