action clever_cloud_get_organisations_id_addonproviders_provider_id_plans { label: "getOrganisationsIdAddonprovidersProviderIdPlans" provider: clever_cloud method: GET path: "/organisations/{id}/addonproviders/{providerId}/plans" encoding: json output: { type: "array" items: { type: "object" required: ["features", "id", "name", "price", "slug"] properties: { features: { type: "array" description: "The list of the feature in the addon" items: { type: "object" required: ["name", "type", "value"] properties: { name: { type: "string" description: "The name of the properties" } type: { type: "string" description: "The type of the feature" } value: { type: "string" description: "The value of the feature" } } } } id: { type: "string" description: "`plan_${uuid}`" } name: { type: "string" description: "Name of the pan" } price: { type: "integer" format: "int32" } slug: { type: "string" } } } } }