Skip to content

Commit dc9ef0d

Browse files
apply pr reviews
1 parent 47c5491 commit dc9ef0d

File tree

12 files changed

+34
-34
lines changed

12 files changed

+34
-34
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).

doc/Apis/DatasetApi.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ All URIs are relative to *http://localhost:8080*
3333

3434
Create a Dataset
3535

36-
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.
36+
Create a new dataset in the workspace. The dataset is initialized with empty data and can be populated through dataset parts.
3737

3838
### Parameters
3939

@@ -91,7 +91,7 @@ Add a control access to the Dataset
9191

9292
Create a data part of a Dataset
9393

94-
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.
94+
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.
9595

9696
### Parameters
9797

@@ -122,7 +122,7 @@ Create a data part of a Dataset
122122

123123
Delete a Dataset
124124

125-
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.
125+
Permanently delete a dataset and all its data parts. This operation cannot be undone.
126126

127127
### Parameters
128128

@@ -326,7 +326,7 @@ Retrieve a data part of a Dataset
326326

327327
Retrieve all dataset parts of a Dataset
328328

329-
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.
329+
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.
330330

331331
### Parameters
332332

@@ -414,7 +414,7 @@ Retrieve a list of defined Dataset
414414

415415
Query data of a Dataset part. This endpoint is only available for dataset parts that support queries (type == DB).
416416

417-
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.
417+
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.
418418

419419
### Parameters
420420

doc/Apis/MetaApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ All URIs are relative to *http://localhost:8080*
1313

1414
Get various information about the API
1515

16-
Retrieve API version information, build details, and platform configuration. Useful for debugging and compatibility checks.
16+
Retrieve API version information and build details.
1717

1818
### Parameters
1919
This endpoint does not need any parameter.

doc/Apis/OrganizationApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ All URIs are relative to *http://localhost:8080*
2626

2727
Create a new organization
2828

29-
Create a new organization. Required: name. Optional: security configuration. The creating user automatically becomes an administrator.
29+
Create a new organization.
3030

3131
### Parameters
3232

@@ -53,7 +53,7 @@ Create a new organization
5353

5454
Add a control access to the Organization
5555

56-
Grant access to an organization for a user or group. Valid roles: viewer, editor, admin.
56+
Grant access to an organization for a user or group.
5757

5858
### Parameters
5959

@@ -81,7 +81,7 @@ Add a control access to the Organization
8181

8282
Delete an organization
8383

84-
Permanently delete an organization. Requires all workspaces within the organization to be deleted first. This operation cannot be undone.
84+
Permanently delete an organization. This operation cannot be undone.
8585

8686
### Parameters
8787

doc/Apis/RunnerApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ All URIs are relative to *http://localhost:8080*
2727

2828
Create a new Runner
2929

30-
Create a new runner for executing simulations. Required: name, solutionId, runTemplateId. Use parentId to create a child runner that inherits configuration from a parent.
30+
Create a new runner for executing simulations. Use parentId to create a child runner that inherits configuration from a parent.
3131

3232
### Parameters
3333

doc/Apis/SolutionApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ All URIs are relative to *http://localhost:8080*
3939

4040
Create a new solution
4141

42-
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.
42+
Create a new solution with optional run templates and parameter definitions.
4343

4444
### Parameters
4545

@@ -67,7 +67,7 @@ Create a new solution
6767

6868
Create solution access control
6969

70-
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.
70+
Grant access to a dataset for a user or group.
7171

7272
### Parameters
7373

doc/Apis/WorkspaceApi.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ All URIs are relative to *http://localhost:8080*
3030

3131
Create a new workspace
3232

33-
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.
33+
Create a new workspace linked to a solution.
3434

3535
### Parameters
3636

@@ -58,7 +58,7 @@ Create a new workspace
5858

5959
Add a control access to the Workspace
6060

61-
Grant access to a workspace for a user or group. Valid roles: viewer, editor, admin. Returns 400 if user already has access.
61+
Grant access to a workspace for a user or group.
6262

6363
### Parameters
6464

@@ -87,7 +87,7 @@ Add a control access to the Workspace
8787

8888
Upload a file for the Workspace
8989

90-
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.
90+
Upload a file to workspace storage. Use 'destination' to specify path, 'overwrite' to replace existing files.
9191

9292
### Parameters
9393

@@ -118,7 +118,7 @@ Upload a file for the Workspace
118118

119119
Delete a workspace
120120

121-
Permanently delete a workspace. All datasets and runners within the workspace must be deleted first. This operation cannot be undone.
121+
Permanently delete a workspace.
122122

123123
### Parameters
124124

@@ -283,7 +283,7 @@ Get a control access for the Workspace
283283

284284
Download the Workspace File specified
285285

286-
Download a specific file from workspace storage. Requires 'file_name' query parameter. Returns file as binary stream. Returns error if file doesn't exist.
286+
Download a specific file from workspace storage. Returns file as binary stream.
287287

288288
### Parameters
289289

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

0 commit comments

Comments
 (0)