Schema global.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{ },
{
"properties": {
"is04": {
"description": "Constants relating to AMWA IS-04 NMOS Discovery and Registration",
"properties": {
"heartbeat_interval": {
"default": 5,
"description": "How often Nodes should perform a heartbeat to maintain their resources in the Registration API (in seconds)",
"maximum": 1000,
"minimum": 1,
"type": "integer"
}
},
"required": [
"heartbeat_interval"
],
"type": "object"
},
"ptp": {
"description": "Constants relating to PTP (IEEE 1588-2008 or later)",
"properties": {
"announce_receipt_timeout": {
"description": "Number of announce intervals that must pass before declaring timeout",
"maximum": 10,
"minimum": 2,
"type": "integer"
},
"domain_number": {
"description": "The PTP domain number",
"maximum": 127,
"minimum": 0,
"type": "integer"
}
},
"required": [
"announce_receipt_timeout",
"domain_number"
],
"type": "object"