{
	"$id": "https://www.atsc-schemas.org/atsc3.0/a344/20210323/org.atsc.query.signaling-request.json",
	"$schema": "https://json-schema.org/draft/2019-09/schema#",
	"title": "Query Signaling Data  API",
	"description": "Query Signaling Data  API",
	"type": "object",
	"properties": {
		"jsonrpc": {
			"type": "string",
			"enum": [ "2.0" ]
		},
		"id": {
			"type": "integer"
		},
		"method": {
			"type": "string",
			"enum": [ "org.atsc.query.signaling" ]
		},
		"params": {
			"type": "object",
			"properties": {
				"nameList": {
					"type": "array",
					"items": {
						"anyOf": [
							{
								"type": "integer"
							},
							{
								"enum": [ "RDT", "ALL", "RD", "APD", "MMT", "USBD", "STSID", "MPD", "PAT", "MPT", "MPIT", "CRIT", "DCIT", "HELD", "DWD", "AEI", "EMSG", "EVTI", "RSAT"]
							}
						]
					}
				}
			},
			"required": [ "nameList" ]
		}
	},
	"required": [ "jsonrpc", "id", "method" ]
}
