Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions openapi-v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -804,6 +804,24 @@ definitions:
x-omitempty: true
description: License text

GroupCreationResponse:
type: object
description: results of the successful group creation request
properties:
id:
description: unique ID of the created group
type: string
example: "00000000-0000-0000-0000-000000000000"
name:
description: The name of the group. If must be unique within the group.
type: string
x-omitempty: false
tiledb_uri:
type: string
x-nullable: false
x-omitempty: false
description: TileDB URI for access

GroupRegistrationRequest:
type: object
description: information for creating a new group with the passed configuration
Expand Down Expand Up @@ -855,6 +873,25 @@ definitions:
description: the name of the access credentials to use. if unset, the default credentials will be used.
type: string

GroupRegistrationResponse:
type: object
description: results of the successful group registration request
properties:
id:
description: unique ID of the registered group
type: string
example: "00000000-0000-0000-0000-000000000000"
name:
description: The name of the group. If must be unique within the group.
type: string
x-omitempty: false
tiledb_uri:
type: string
x-nullable: false
x-omitempty: false
description: TileDB URI for access


GroupContentsRetrievalResponse:
description: Object including a page of members of a group and pagination metadata
type: object
Expand Down Expand Up @@ -1394,6 +1431,8 @@ paths:
responses:
201:
description: group created successfully
schema:
$ref: "#/definitions/GroupCreationResponse"
502:
description: Bad Gateway
default:
Expand All @@ -1413,6 +1452,8 @@ paths:
responses:
201:
description: group created successfully
schema:
$ref: "#/definitions/GroupRegistrationResponse"
502:
description: Bad Gateway
default:
Expand Down