Apache OpenMeetings · Schema
FileItemDTO
FileItemDTO schema from Apache OpenMeetings REST API
CollaborationVideo ConferencingWeb ConferencingWhiteboardApacheOpen SourceConferencing
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| name | string | |
| hash | string | |
| parentId | integer | |
| roomId | integer | |
| groupId | integer | |
| ownerId | integer | |
| size | integer | |
| externalId | string | |
| externalType | string | |
| type | string | |
| width | integer | |
| height | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/apache-openmeetings/refs/heads/main/json-schema/apache-openmeetings-file-item-dto-schema.json",
"title": "FileItemDTO",
"description": "FileItemDTO schema from Apache OpenMeetings REST API",
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
"name": {
"type": "string"
},
"hash": {
"type": "string"
},
"parentId": {
"type": "integer",
"format": "int64"
},
"roomId": {
"type": "integer",
"format": "int64"
},
"groupId": {
"type": "integer",
"format": "int64"
},
"ownerId": {
"type": "integer",
"format": "int64"
},
"size": {
"type": "integer",
"format": "int64"
},
"externalId": {
"type": "string"
},
"externalType": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"FOLDER",
"IMAGE",
"POLL_CHART",
"PRESENTATION",
"RECORDING",
"VIDEO",
"WML_FILE"
]
},
"width": {
"type": "integer",
"format": "int32"
},
"height": {
"type": "integer",
"format": "int32"
}
}
}