action webflow_get_plans { label: "get_plans" provider: webflow method: GET path: "/plans" encoding: json input: { type: "object" properties: { maxResults: { type: "string" } nextToken: { type: "string" } owner: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["nextToken", "plans"] properties: { nextToken: { type: "string" } plans: { type: "array" items: { type: "object" required: ["available", "currency", "latest", "name", "organizationId", "planId"] properties: { activeModels: { type: "object" } available: { type: "boolean" } currency: { type: "string" enum: ["USD", "EUR", "NOK"] } description: { type: "string" } fieldPredictions: { type: "object" } gpuHours: { type: "object" } latest: { type: "integer" } license: { type: "object" } modelDeploymentUnits: { type: "object" } name: { type: "string" } organizationId: { type: "string" } planId: { type: "string" } } additionalProperties: false } } } additionalProperties: false } }