action webflow_post_predictions { label: "post_predictions" provider: webflow method: POST path: "/predictions" encoding: json input: { type: "object" properties: { "Content-Type": { type: "string" } autoRotate: { type: "boolean" } documentId: { type: "string" } imageQuality: { type: "string" enum: ["LOW", "HIGH"] } maxPages: { type: "integer" } modelId: { type: "string" } postprocessConfig: { type: "object" } rotation: { type: "integer" enum: [0, 90, 180, 270] } trainingId: { type: "string" } } required: ["Content-Type", "documentId", "modelId"] additionalProperties: false } output: { 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 } }