action webflow_get_datasets_dataset_id { label: "get_datasets_datasetId" provider: webflow method: GET path: "/datasets/{datasetId}" encoding: json input: { type: "object" properties: { datasetId: { type: "string" } } required: ["datasetId"] additionalProperties: false } output: { type: "object" required: ["containsPersonallyIdentifiableInformation", "createdBy", "createdTime", "datasetId", "description", "groundTruthSummary", "metadata", "numberOfDocuments", "retentionInDays", "storageLocation", "updatedBy", "updatedTime", "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 } }