action webflow_delete_models_model_id_data_bundles_data_bundle_id { label: "delete_models_modelId_dataBundles_dataBundleId" provider: webflow method: DELETE path: "/models/{modelId}/dataBundles/{dataBundleId}" encoding: json input: { type: "object" properties: { dataBundleId: { type: "string" } modelId: { type: "string" } } required: ["dataBundleId", "modelId"] additionalProperties: false } output: { 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 } }