action clever_cloud_get_organisations_id_deployments { label: "getOrganisationsIdDeployments" provider: clever_cloud method: GET path: "/organisations/{id}/deployments" encoding: json output: { type: "object" properties: { "{app_id}": { type: "array" items: { type: "object" required: ["action", "cause", "commit", "date", "id", "instances", "state", "uuid"] properties: { action: { type: "string" } author: { type: "object" required: ["id", "name"] properties: { id: { type: "string" } name: { type: "string" } } } cause: { type: "string" } commit: { type: "string" } date: { type: "string" format: "date" } id: { type: "integer" format: "int64" } instances: { type: "integer" format: "int64" } state: { type: "string" } uuid: { type: "string" } } } } } } }