Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique queue identifier. |
| name | string | Name of the queue. |
| locationName | string | Name of the location. |
| locationId | string | Unique location identifier. |
| phoneNumber | string | Phone number of the queue. |
| extension | number | Extension of the queue. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/QueueObject",
"title": "QueueObject",
"type": "object",
"required": [
"id",
"name",
"locationName",
"locationId",
"phoneNumber"
],
"properties": {
"id": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL0NBTExfUVVFVUUvOGY1MDI2ZjMtMDZjYi00OTU3LWE0MDQtNDYyM2UzYjJjYzVi",
"description": "Unique queue identifier."
},
"name": {
"type": "string",
"example": "Queue 1",
"description": "Name of the queue."
},
"locationName": {
"type": "string",
"example": "Location 1",
"description": "Name of the location."
},
"locationId": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL0xPQ0FUSU9OL2M3YmRjMmI5LWFmZmUtNDE0NC1hZTNkLTI4MWZmZTFjZThlYw",
"description": "Unique location identifier."
},
"phoneNumber": {
"type": "string",
"example": "+1234567890",
"description": "Phone number of the queue."
},
"extension": {
"type": "number",
"example": 1234,
"description": "Extension of the queue."
}
}
}