Skip to content

Commit 0e3cf38

Browse files
committed
Add creation/registration info to the added group
1 parent 2d15dd5 commit 0e3cf38

1 file changed

Lines changed: 41 additions & 0 deletions

File tree

openapi-v2.yaml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -767,6 +767,24 @@ definitions:
767767
x-omitempty: true
768768
description: License text
769769

770+
GroupCreationResponse:
771+
type: object
772+
description: results of the successful group creation request
773+
properties:
774+
id:
775+
description: unique ID of the created group
776+
type: string
777+
example: "00000000-0000-0000-0000-000000000000"
778+
name:
779+
description: The name of the group. If must be unique within the group.
780+
type: string
781+
x-omitempty: false
782+
tiledb_uri:
783+
type: string
784+
x-nullable: false
785+
x-omitempty: false
786+
description: TileDB URI for access
787+
770788
GroupRegistrationRequest:
771789
type: object
772790
description: information for creating a new group with the passed configuration
@@ -818,6 +836,25 @@ definitions:
818836
description: the name of the access credentials to use. if unset, the default credentials will be used.
819837
type: string
820838

839+
GroupRegistrationResponse:
840+
type: object
841+
description: results of the successful group registration request
842+
properties:
843+
id:
844+
description: unique ID of the registered group
845+
type: string
846+
example: "00000000-0000-0000-0000-000000000000"
847+
name:
848+
description: The name of the group. If must be unique within the group.
849+
type: string
850+
x-omitempty: false
851+
tiledb_uri:
852+
type: string
853+
x-nullable: false
854+
x-omitempty: false
855+
description: TileDB URI for access
856+
857+
821858
GroupContentsRetrievalResponse:
822859
description: Object including a page of members of a group and pagination metadata
823860
type: object
@@ -1274,6 +1311,8 @@ paths:
12741311
responses:
12751312
201:
12761313
description: group created successfully
1314+
schema:
1315+
$ref: "#/definitions/GroupCreationResponse"
12771316
default:
12781317
description: error response
12791318
schema:
@@ -1292,6 +1331,8 @@ paths:
12921331
responses:
12931332
201:
12941333
description: group created successfully
1334+
schema:
1335+
$ref: "#/definitions/GroupCreationResponse"
12951336
default:
12961337
description: error response
12971338
schema:

0 commit comments

Comments
 (0)