Skip to content

Commit fa5aa9f

Browse files
apply pr reviews
1 parent 47c5491 commit fa5aa9f

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

dataset/src/main/openapi/dataset.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ paths:
2424
operationId: createDataset
2525
tags:
2626
- 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."
2828
summary: Create a Dataset
2929
requestBody:
3030
content:
@@ -235,7 +235,7 @@ paths:
235235
operationId: deleteDataset
236236
tags:
237237
- 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."
239239
summary: Delete a Dataset
240240
responses:
241241
"204":
@@ -461,7 +461,7 @@ paths:
461461
operationId: createDatasetPart
462462
tags:
463463
- 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."
465465
summary: Create a data part of a Dataset
466466
requestBody:
467467
content:
@@ -508,7 +508,7 @@ paths:
508508
- $ref: '#/components/parameters/size'
509509
tags:
510510
- 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."
512512
summary: Retrieve all dataset parts of a Dataset
513513
responses:
514514
"200":
@@ -761,7 +761,7 @@ paths:
761761
operationId: queryData
762762
tags:
763763
- 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."
765765
summary: |
766766
Query data of a Dataset part.
767767
This endpoint is only available for dataset parts that support queries (type == DB).

meta/src/main/openapi/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ paths:
1717
operationId: about
1818
tags:
1919
- meta
20-
description: "Retrieve API version information, build details, and platform configuration. Useful for debugging and compatibility checks."
20+
description: "Retrieve API version information and build details."
2121
summary: Get various information about the API
2222
responses:
2323
"200":

organization/src/main/openapi/organization.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ paths:
1818
operationId: createOrganization
1919
tags:
2020
- organization
21-
description: "Create a new organization. Required: name. Optional: security configuration. The creating user automatically becomes an administrator."
21+
description: "Create a new organization."
2222
summary: Create a new organization
2323
requestBody:
2424
required: true
@@ -155,7 +155,7 @@ paths:
155155
operationId: deleteOrganization
156156
tags:
157157
- organization
158-
description: "Permanently delete an organization. Requires all workspaces within the organization to be deleted first. This operation cannot be undone."
158+
description: "Permanently delete an organization. This operation cannot be undone."
159159
summary: Delete an organization
160160
responses:
161161
"204":
@@ -302,7 +302,7 @@ paths:
302302
operationId: createOrganizationAccessControl
303303
tags:
304304
- organization
305-
description: "Grant access to an organization for a user or group. Valid roles: viewer, editor, admin."
305+
description: "Grant access to an organization for a user or group."
306306
summary: Add a control access to the Organization
307307
requestBody:
308308
description: The new Organization security access to add.

runner/src/main/openapi/runner.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ paths:
2020
operationId: createRunner
2121
tags:
2222
- runner
23-
description: "Create a new runner for executing simulations. Required: name, solutionId, runTemplateId. Use parentId to create a child runner that inherits configuration from a parent."
23+
description: "Create a new runner for executing simulations. Use parentId to create a child runner that inherits configuration from a parent."
2424
summary: Create a new Runner
2525
requestBody:
2626
description: the Runner to create

solution/src/main/openapi/solution.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ paths:
2020
operationId: createSolution
2121
tags:
2222
- solution
23-
description: "Create a new solution with optional run templates and parameter definitions. Required: key (unique identifier), name. The solution key must be unique within the organization."
23+
description: "Create a new solution with optional run templates and parameter definitions."
2424
summary: Create a new solution
2525
requestBody:
2626
description: The Solution to create
@@ -745,7 +745,7 @@ paths:
745745
operationId: createSolutionAccessControl
746746
tags:
747747
- solution
748-
description: "Grant access to a dataset for a user or group. Required: identity id and role. Valid roles: viewer, editor, admin. Returns 400 if user already has access."
748+
description: "Grant access to a dataset for a user or group."
749749
summary: Create solution access control
750750
requestBody:
751751
description: Access control to create

workspace/src/main/openapi/workspace.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ paths:
1919
operationId: createWorkspace
2020
tags:
2121
- workspace
22-
description: "Create a new workspace linked to a solution. Required: key (unique identifier), name, and solution configuration. The workspace key must be unique within the organization."
22+
description: "Create a new workspace linked to a solution."
2323
summary: Create a new workspace
2424
requestBody:
2525
description: The Workspace to create
@@ -157,7 +157,7 @@ paths:
157157
operationId: deleteWorkspace
158158
tags:
159159
- workspace
160-
description: "Permanently delete a workspace. All datasets and runners within the workspace must be deleted first. This operation cannot be undone."
160+
description: "Permanently delete a workspace."
161161
summary: Delete a workspace
162162
responses:
163163
"204":
@@ -175,7 +175,7 @@ paths:
175175
operationId: createWorkspaceFile
176176
tags:
177177
- workspace
178-
description: "Upload a file to workspace storage. Use 'destination' to specify path, 'overwrite' to replace existing files. Returns 400 if file exists and overwrite is false."
178+
description: "Upload a file to workspace storage. Use 'destination' to specify path, 'overwrite' to replace existing files."
179179
summary: Upload a file for the Workspace
180180
requestBody:
181181
description: The file to upload
@@ -280,7 +280,7 @@ paths:
280280
operationId: getWorkspaceFile
281281
tags:
282282
- workspace
283-
description: "Download a specific file from workspace storage. Requires 'file_name' query parameter. Returns file as binary stream. Returns error if file doesn't exist."
283+
description: "Download a specific file from workspace storage. Returns file as binary stream."
284284
summary: Download the Workspace File specified
285285
responses:
286286
"200":
@@ -428,7 +428,7 @@ paths:
428428
operationId: createWorkspaceAccessControl
429429
tags:
430430
- workspace
431-
description: "Grant access to a workspace for a user or group. Valid roles: viewer, editor, admin. Returns 400 if user already has access."
431+
description: "Grant access to a workspace for a user or group."
432432
summary: Add a control access to the Workspace
433433
requestBody:
434434
description: The new Workspace security access to add.

0 commit comments

Comments
 (0)