esa-nodecg/schemas/graphics%3Ainstances.json
2024-03-13 11:26:46 +01:00

53 lines
817 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"default": [],
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"ipv4": {
"type": "string"
},
"timestamp": {
"type": "number"
},
"bundleName": {
"type": "string"
},
"bundleVersion": {
"type": "string"
},
"bundleGit": {
"type": "object"
},
"pathName": {
"type": "string"
},
"singleInstance": {
"type": "boolean"
},
"socketId": {
"type": "string"
},
"open": {
"type": "boolean"
},
"potentiallyOutOfDate": {
"type": "boolean"
}
},
"required": [
"ipv4",
"timestamp",
"bundleName",
"bundleVersion",
"pathName",
"singleInstance",
"socketId",
"open",
"potentiallyOutOfDate"
]
}
}