Schema receiver_core.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{ },
{
"properties": {
"device_id": {
"description": "Device ID which this Receiver forms part of. This attribute is used to ensure referential integrity by registry implementations.",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$",
"type": "string"
},
"interface_bindings": {
"description": "Binding of Receiver ingress ports to interfaces on the parent Node.",
"items": {
"type": "string"
},
"type": "array"
},
"subscription": {
"description": "Object indicating how this Receiver is currently configured to receive data.",
"properties": {
"active": {
"default": false,
"description": "Receiver is enabled and configured to receive data",
"type": "boolean"
},
"sender_id": {
"default": null,
"description": "UUID of the Sender from which this Receiver is currently configured to receive data. Only set if it is active and receiving from an NMOS Sender; otherwise null.",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$",
"type": [
"string",
"null"
]
}
},
"required": [
"sender_id",
"active"
],
"type": "object"