action webflow_get_plans_plan_id { label: "get_plans_planId" provider: webflow method: GET path: "/plans/{planId}" encoding: json input: { type: "object" properties: { planId: { type: "string" } } required: ["planId"] additionalProperties: false } output: { 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 } }