|
24 | 24 | operationId: createDataset |
25 | 25 | tags: |
26 | 26 | - dataset |
27 | | - description: "Create a new dataset in the workspace. Required fields: name. The dataset is initialized with empty data and can be populated through dataset parts. Creator becomes admin." |
| 27 | + description: "Create a new dataset in the workspace. The dataset is initialized with empty data and can be populated through dataset parts." |
28 | 28 | summary: Create a Dataset |
29 | 29 | requestBody: |
30 | 30 | content: |
@@ -235,7 +235,7 @@ paths: |
235 | 235 | operationId: deleteDataset |
236 | 236 | tags: |
237 | 237 | - dataset |
238 | | - description: "Permanently delete a dataset and all its data parts. This operation cannot be undone. Returns 204 on success, 404 if not found, 409 if dataset is in use by runners." |
| 238 | + description: "Permanently delete a dataset and all its data parts. This operation cannot be undone." |
239 | 239 | summary: Delete a Dataset |
240 | 240 | responses: |
241 | 241 | "204": |
@@ -461,7 +461,7 @@ paths: |
461 | 461 | operationId: createDatasetPart |
462 | 462 | tags: |
463 | 463 | - dataset |
464 | | - description: "Create a new data part within a dataset. Specify type as 'FILE' for file uploads or 'DB' for database queries. Returns the created part with generated ID." |
| 464 | + description: "Create a new data part within a dataset. Specify type as 'File' for file uploads or 'DB' for database queries. Returns the created part with generated ID." |
465 | 465 | summary: Create a data part of a Dataset |
466 | 466 | requestBody: |
467 | 467 | content: |
@@ -508,7 +508,7 @@ paths: |
508 | 508 | - $ref: '#/components/parameters/size' |
509 | 509 | tags: |
510 | 510 | - dataset |
511 | | - description: "Retrieve all data parts associated with a dataset. Parts can be of type FILE (uploaded files) or DB (database connections). Returns part metadata, type, and status." |
| 511 | + description: "Retrieve all data parts associated with a dataset. Parts can be of type File (uploaded files) or DB (database connections). Returns part metadata, type, and status." |
512 | 512 | summary: Retrieve all dataset parts of a Dataset |
513 | 513 | responses: |
514 | 514 | "200": |
@@ -761,7 +761,7 @@ paths: |
761 | 761 | operationId: queryData |
762 | 762 | tags: |
763 | 763 | - dataset |
764 | | - description: "Execute a SQL or DSL query against a database-type dataset part. The query parameter is required. Results are returned as JSON. Only available for parts with type=DB." |
| 764 | + description: "Execute a SQL or DSL query against a database-type dataset part. The query parameter is required. Results are returned as plain-text CSV. Only available for parts with type=DB." |
765 | 765 | summary: | |
766 | 766 | Query data of a Dataset part. |
767 | 767 | This endpoint is only available for dataset parts that support queries (type == DB). |
|
0 commit comments