{
	"$id": "https://www.atsc-schemas.org/atsc3.0/a344/20230217/org.atsc.query.deviceInfo-request.json",
	"$schema": "https://json-schema.org/draft/2019-09/schema#",
	"title": "Query Device Info API",
	"description": "Query Device Info API",
	"type": "object",
 	 "properties": {
		"jsonrpc": {
			"type": "string", 
			"enum": [ "2.0" ]
		},
		"id": { 
			"type": "integer"
		},
		"method": 
{"type": "string",
	"enum": [
		"org.atsc.query.deviceInfo"] 
	 },
	"params":{
    "type": "object",
    "properties": {
        "deviceInfoProperties": {
            "type": "array",
            "items": {"type": "string"}
        }
    }
}},
	"required": [ "jsonrpc", "id", "method" ] 
}
