{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetVirtualLineDevicesObject",
"title": "GetVirtualLineDevicesObject",
"type": "object",
"required": [
"availableEndpointType",
"maxDeviceCount"
],
"properties": {
"devices": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DeviceObject"
},
"description": "List of devices assigned to a virtual line."
},
"availableEndpointType": {
"$ref": "#/components/schemas/LineType",
"description": "Indicates to which line a device can be assigned."
},
"maxDeviceCount": {
"type": "number",
"example": 35,
"description": "Maximum number of devices a virtual line can be assigned to."
}
}
}