25 lines
524 B
JSON
25 lines
524 B
JSON
|
{
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"id",
|
||
|
"description",
|
||
|
"ip_address",
|
||
|
"active",
|
||
|
"is_shared",
|
||
|
"name",
|
||
|
"online",
|
||
|
"status"
|
||
|
],
|
||
|
"properties": {
|
||
|
"id": { "type": "integer" },
|
||
|
"description": { "type": "string" },
|
||
|
"ip_address": { "type": "string" },
|
||
|
"active": { "type": "boolean" },
|
||
|
"is_shared": { "type": "boolean" },
|
||
|
"name": { "type": ["null", "string"] },
|
||
|
"online": { "type": "boolean" },
|
||
|
"status": { "type": "string" }
|
||
|
},
|
||
|
"additionalProperties": false
|
||
|
}
|