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