Schema receiver_core.json
Resolve referenced schemas (may reorder keys)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "Describes a receiver",
"title": "Receiver resource",
"allOf": [
{ "$ref": "resource_core.json" },
{
"type": "object",
"required": [
"device_id",
"transport",
"interface_bindings",
"subscription"
],
"properties": {
"device_id": {
"description": "Device ID which this Receiver forms part of. This attribute is used to ensure referential integrity by registry implementations.",
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
},
"transport": {
"description": "Transport type accepted by the Receiver in URN format",
"type": "string",
"oneOf": [
{
"pattern": "^urn:x-nmos:transport:"
},
{
"not": {
"pattern": "^urn:x-nmos:"
}
}
],
"format": "uri"
},
"interface_bindings": {
"description": "Binding of Receiver ingress ports to interfaces on the parent Node.",
"type": "array",
"items": {
"type":"string"
}