{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeviceServerRead", "title": "DeviceServerRead", "type": "object", "properties": { "id": { "type": "integer", "description": "The id of the DeviceServer as created on the server.", "readOnly": true, "writeOnly": false }, "created": { "type": "string", "description": "The timestamp of the DeviceServer's creation.", "readOnly": true, "writeOnly": false }, "updated": { "type": "string", "description": "The timestamp of the DeviceServer's last update.", "readOnly": true, "writeOnly": false }, "description": { "type": "string", "description": "The description of the DeviceServer.", "readOnly": true, "writeOnly": false }, "ip": { "type": "string", "description": "The ip address which was used to create the DeviceServer.", "readOnly": true, "writeOnly": false }, "status": { "type": "string", "description": "The status of the DeviceServer. Can be ACTIVE, BLOCKED, NEEDS_CONFIRMATION or OBSOLETE.", "readOnly": true, "writeOnly": false } } }