Skip to content
Merged
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
47 changes: 23 additions & 24 deletions OpenAPI-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -865,30 +865,10 @@ components:
type: number
description: VTC member ID or 0 if not in a VTC
vtcHistory:
type: object
required:
- id
- name
- verified
- joinDate
- leftDate
properties:
id:
type: number
description: ID of the VTC
name:
type: string
description: Name of the VTC
verified:
type: boolean
description: If the VTC is verified
joinDate:
type: string
description: Date and time the user joined the VTC (UTC)
leftDate:
type: string
description: Date and time the user left the VTC (UTC)

type: array
description: If the user do not allow to see their VTC history `null` will be returned
items:
$ref: '#/components/schemas/VTCHistory'
required:
- id
- name
Expand Down Expand Up @@ -1401,6 +1381,25 @@ components:
- following
- created_at
- updated_at
VTCHistory:
description: ''
type: object
properties:
id:
type: number
description: ID of the VTC
name:
type: string
description: Name of the VTC
verified:
type: boolean
description: If the VTC is verified
joinDate:
type: string
description: Date and time the user joined the VTC (UTC)
leftDate:
type: string
description: Date and time the user left the VTC (UTC)
VTCIndex:
description: ''
type: object
Expand Down