Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The id of the DeviceServer as created on the server. |
| created | string | The timestamp of the DeviceServer's creation. |
| updated | string | The timestamp of the DeviceServer's last update. |
| description | string | The description of the DeviceServer. |
| ip | string | The ip address which was used to create the DeviceServer. |
| status | string | The status of the DeviceServer. Can be ACTIVE, BLOCKED, NEEDS_CONFIRMATION or OBSOLETE. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DeviceServerListing",
"title": "DeviceServerListing",
"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
}
}
}