You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dataset/src/main/openapi/dataset.yaml
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ paths:
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).
Copy file name to clipboardExpand all lines: organization/src/main/openapi/organization.yaml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ paths:
18
18
operationId: createOrganization
19
19
tags:
20
20
- 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."
22
22
summary: Create a new organization
23
23
requestBody:
24
24
required: true
@@ -155,7 +155,7 @@ paths:
155
155
operationId: deleteOrganization
156
156
tags:
157
157
- 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."
159
159
summary: Delete an organization
160
160
responses:
161
161
"204":
@@ -302,7 +302,7 @@ paths:
302
302
operationId: createOrganizationAccessControl
303
303
tags:
304
304
- 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."
306
306
summary: Add a control access to the Organization
307
307
requestBody:
308
308
description: The new Organization security access to add.
Copy file name to clipboardExpand all lines: runner/src/main/openapi/runner.yaml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ paths:
20
20
operationId: createRunner
21
21
tags:
22
22
- 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."
Copy file name to clipboardExpand all lines: solution/src/main/openapi/solution.yaml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ paths:
20
20
operationId: createSolution
21
21
tags:
22
22
- 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."
24
24
summary: Create a new solution
25
25
requestBody:
26
26
description: The Solution to create
@@ -745,7 +745,7 @@ paths:
745
745
operationId: createSolutionAccessControl
746
746
tags:
747
747
- 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."
Copy file name to clipboardExpand all lines: workspace/src/main/openapi/workspace.yaml
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ paths:
19
19
operationId: createWorkspace
20
20
tags:
21
21
- 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."
23
23
summary: Create a new workspace
24
24
requestBody:
25
25
description: The Workspace to create
@@ -157,7 +157,7 @@ paths:
157
157
operationId: deleteWorkspace
158
158
tags:
159
159
- 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."
161
161
summary: Delete a workspace
162
162
responses:
163
163
"204":
@@ -175,7 +175,7 @@ paths:
175
175
operationId: createWorkspaceFile
176
176
tags:
177
177
- 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."
179
179
summary: Upload a file for the Workspace
180
180
requestBody:
181
181
description: The file to upload
@@ -280,7 +280,7 @@ paths:
280
280
operationId: getWorkspaceFile
281
281
tags:
282
282
- 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."
284
284
summary: Download the Workspace File specified
285
285
responses:
286
286
"200":
@@ -428,7 +428,7 @@ paths:
428
428
operationId: createWorkspaceAccessControl
429
429
tags:
430
430
- 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."
432
432
summary: Add a control access to the Workspace
433
433
requestBody:
434
434
description: The new Workspace security access to add.
0 commit comments