action webflow_get_models_model_id_data_bundles { label: "get_models_modelId_dataBundles" provider: webflow method: GET path: "/models/{modelId}/dataBundles" encoding: json input: { type: "object" properties: { maxResults: { type: "string" } modelId: { type: "string" } nextToken: { type: "string" } status: { type: "string" } } required: ["modelId"] additionalProperties: false } output: { type: "object" required: ["dataBundles", "nextToken"] properties: { dataBundles: { type: "array" items: { type: "object" required: ["createdBy", "createdTime", "dataBundleId", "datasets", "description", "modelId", "name", "status", "summary", "updatedBy", "updatedTime"] properties: { createdBy: { type: "string" } createdTime: { type: "string" } dataBundleId: { type: "string" } datasets: { type: "array" items: { type: "object" required: ["containsPersonallyIdentifiableInformation", "datasetId", "description", "numberOfDocuments", "retentionInDays", "storageLocation", "version"] properties: { containsPersonallyIdentifiableInformation: { type: "boolean" } createdBy: { type: "string" } createdTime: { type: "string" } datasetId: { type: "string" } description: { type: "string" } groundTruthSummary: { type: "object" } metadata: { type: "object" } name: { type: "string" } numberOfDocuments: { type: "integer" } retentionInDays: { type: "integer" } storageLocation: { type: "string" enum: ["EU"] } updatedBy: { type: "string" } updatedTime: { type: "string" } version: { type: "integer" } } additionalProperties: false } } description: { type: "string" } modelId: { type: "string" } name: { type: "string" } retentionInDays: { type: "integer" } status: { type: "string" enum: ["running", "succeeded", "failed"] } summary: { type: "object" } updatedBy: { type: "string" } updatedTime: { type: "string" } } additionalProperties: false } } nextToken: { type: "string" } status: { type: "array" items: { type: "string" enum: ["running", "succeeded", "failed"] } } } additionalProperties: false } }