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
24 changes: 17 additions & 7 deletions OpenAPI-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1919,6 +1919,19 @@ components:
- role
- joinDate
VTCPartnershipsIndex:
description: ''
type: object
properties:
partners:
type: array
items:
$ref: '#/components/schemas/VTCPartnership'
pending_requests_count:
type: integer
description: Amount of pending VTC partnership requests involving the VTC.
required:
- partners
VTCPartnership:
description: ''
type: object
properties:
Expand All @@ -1935,18 +1948,15 @@ components:
type: string
description: The timestamp the VTC partnership was last updated at. This will be due to the status changing.
sender:
type: array
type: object
description: Returns a VTC object for the VTC that sent the request.
items:
$ref: '#/components/schemas/VTC'
description: Returns a VTC object for the VTC that sent the request.
receiver:
type: array
type: object
description: Returns a VTC object for the VTC that received the request.
items:
$ref: '#/components/schemas/VTC'
description: Returns a VTC object for the VTC that received the request.
pending_requests_count:
type: integer
description: Returns the number of pending VTC requests requiring action.
required:
- id
- status
Expand Down