action webflow_get_models { label: "get_models" provider: webflow method: GET path: "/models" encoding: json input: { type: "object" properties: { maxResults: { type: "string" } nextToken: { type: "string" } owner: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["models", "nextToken"] properties: { models: { type: "array" items: { type: "object" required: ["createdBy", "createdTime", "description", "fieldConfig", "height", "metadata", "modelId", "name", "numberOfDataBundles", "numberOfRunningTrainings", "organizationId", "preprocessConfig", "status", "trainingId", "updatedBy", "updatedTime", "width"] properties: { createdBy: { type: "string" } createdTime: { type: "string" } description: { type: "string" } fieldConfig: { type: "object" } height: { type: "integer" } metadata: { type: "object" } modelId: { type: "string" } name: { type: "string" } numberOfDataBundles: { type: "integer" } numberOfRunningTrainings: { type: "integer" } organizationId: { type: "string" } postprocessConfig: { type: "object" } preprocessConfig: { type: "object" required: ["autoRotate", "imageQuality", "maxPages"] properties: { autoRotate: { type: "boolean" } imageQuality: { type: "string" enum: ["LOW", "HIGH"] } maxPages: { type: "integer" } } additionalProperties: false } status: { type: "string" enum: ["active", "inactive"] } trainingId: { type: "string" } updatedBy: { type: "string" } updatedTime: { type: "string" } width: { type: "integer" } } additionalProperties: false } } nextToken: { type: "string" } } additionalProperties: false } }