openapi: update autoDeletionDate examples to use future date and correct API server URLs

This commit is contained in:
juancarmore 2025-07-04 14:02:19 +02:00
parent 37ad7e318a
commit 62f5a64708
6 changed files with 10 additions and 10 deletions

View File

@ -10,7 +10,7 @@ content:
roomId: 'room-123'
roomIdPrefix: 'room'
creationDate: 1620000000000
autoDeletionDate: 1620000800000
autoDeletionDate: 1900000000000
preferences:
chatPreferences:
enabled: true
@ -32,7 +32,7 @@ content:
roomId: 'room-123'
roomIdPrefix: 'room'
creationDate: 1620000000000
autoDeletionDate: 1620000800000
autoDeletionDate: 1900000000000
preferences:
chatPreferences:
enabled: true

View File

@ -19,7 +19,7 @@ content:
- roomId: 'room-123'
roomIdPrefix: 'room'
creationDate: 1620000000000
autoDeletionDate: 1620000800000
autoDeletionDate: 1900000000000
preferences:
chatPreferences:
enabled: true
@ -32,7 +32,7 @@ content:
- roomId: 'room-456'
roomIdPrefix: 'room'
creationDate: 1620001000000
autoDeletionDate: 1620001800000
autoDeletionDate: 1900000000000
preferences:
chatPreferences:
enabled: false
@ -62,7 +62,7 @@ content:
- roomId: 'room-123'
roomIdPrefix: 'room'
creationDate: 1620000000000
autoDeletionDate: 1620000800000
autoDeletionDate: 1900000000000
preferences:
chatPreferences:
enabled: true
@ -73,7 +73,7 @@ content:
- roomId: 'room-456'
roomIdPrefix: 'room'
creationDate: 1620001000000
autoDeletionDate: 1620001800000
autoDeletionDate: 1900000000000
preferences:
chatPreferences:
enabled: false

View File

@ -2,7 +2,7 @@ type: object
properties:
autoDeletionDate:
type: [number, 'null']
example: 1620000000000
example: 1900000000000
description: >
The date and time when the room will be deleted (must be one hour in the future or more) represented in milliseconds since the Unix epoch.

View File

@ -17,7 +17,7 @@ properties:
The creation date of the room in milliseconds since the Unix epoch.
autoDeletionDate:
type: [number, 'null']
example: 1620000800000
example: 1900000000000
description: >
The date and time when the room will be deleted (must be one hour in the future or more) represented in milliseconds since the Unix epoch.

View File

@ -2,7 +2,7 @@ openapi: 3.1.0
info:
$ref: './info/info.yaml'
servers:
- url: /meet/api/v1
- url: /api/v1
description: OpenVidu Meet API
tags:
$ref: './tags/tags.yaml'

View File

@ -2,7 +2,7 @@ openapi: 3.1.0
info:
$ref: './info/info.yaml'
servers:
- url: /meet/internal-api/v1
- url: /internal-api/v1
description: OpenVidu Meet Internal API
tags:
$ref: './tags/tags.yaml'