19 lines
696 B
YAML
19 lines
696 B
YAML
components:
|
|
schemas:
|
|
OrganizationsAuthData:
|
|
description: Authenticated response payload containing organizations.
|
|
type: object
|
|
additionalProperties: false
|
|
required:
|
|
- accessToken
|
|
- organizations
|
|
properties:
|
|
accessToken:
|
|
description: Refreshed access token to be used in subsequent API calls.
|
|
$ref: ../../../models/auth/token_data.yaml#/components/schemas/TokenData
|
|
organizations:
|
|
description: Collection of organizations available to the authenticated account.
|
|
type: array
|
|
items:
|
|
$ref: ../../../models/organization/organization.yaml#/components/schemas/Organization
|