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' roomId: 'room-123'
roomIdPrefix: 'room' roomIdPrefix: 'room'
creationDate: 1620000000000 creationDate: 1620000000000
autoDeletionDate: 1620000800000 autoDeletionDate: 1900000000000
preferences: preferences:
chatPreferences: chatPreferences:
enabled: true enabled: true
@ -32,7 +32,7 @@ content:
roomId: 'room-123' roomId: 'room-123'
roomIdPrefix: 'room' roomIdPrefix: 'room'
creationDate: 1620000000000 creationDate: 1620000000000
autoDeletionDate: 1620000800000 autoDeletionDate: 1900000000000
preferences: preferences:
chatPreferences: chatPreferences:
enabled: true enabled: true

View File

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

View File

@ -2,7 +2,7 @@ type: object
properties: properties:
autoDeletionDate: autoDeletionDate:
type: [number, 'null'] type: [number, 'null']
example: 1620000000000 example: 1900000000000
description: > 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. 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. The creation date of the room in milliseconds since the Unix epoch.
autoDeletionDate: autoDeletionDate:
type: [number, 'null'] type: [number, 'null']
example: 1620000800000 example: 1900000000000
description: > 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. 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: info:
$ref: './info/info.yaml' $ref: './info/info.yaml'
servers: servers:
- url: /meet/api/v1 - url: /api/v1
description: OpenVidu Meet API description: OpenVidu Meet API
tags: tags:
$ref: './tags/tags.yaml' $ref: './tags/tags.yaml'

View File

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