Schema sender.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{ },
{
"properties": {
"caps": {
"description": "Capabilities of this sender",
"properties": {},
"type": "object"
},
"device_id": {
"description": "Device ID which this Sender 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"
},
"flow_id": {
"default": null,
"description": "ID of the Flow currently passing via this Sender. Set to null when a Flow is not currently internally routed to the Sender.",
"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"
]
},
"interface_bindings": {
"description": "Binding of Sender egress ports to interfaces on the parent Node.",
"items": {
"type": "string"
},
"type": "array"
},
"manifest_href": {
"description": "HTTP(S) accessible URL to a file describing how to connect to the Sender. Set to null when the transport type used by the Sender does not require a transport file.",
"format": "uri",
"type": [
"string",
"null"
]
},
"subscription": {
"description": "Object indicating how this Sender is currently configured to send data.",
"properties": {