action webflow_get_predictions { label: "get_predictions" provider: webflow method: GET path: "/predictions" encoding: json input: { type: "object" properties: { maxResults: { type: "string" } nextToken: { type: "string" } order: { type: "string" } sortBy: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["nextToken", "predictions"] properties: { nextToken: { type: "string" } order: { type: "string" enum: ["ascending", "descending"] } predictions: { type: "array" items: { type: "object" required: ["documentId", "inferenceTime", "modelId", "predictionId", "predictions"] properties: { createdBy: { type: "string" } createdTime: { type: "string" } documentId: { type: "string" } inferenceTime: { type: "number" } modelId: { type: "string" } predictionId: { type: "string" } predictions: { type: "array" items: { type: "object" } } trainingId: { type: "string" } } additionalProperties: false } } sortBy: { type: "string" enum: ["createdTime"] } } additionalProperties: false } }