{
	"$id": "https://www.atsc-schemas.org/atsc3.0/a344/20240213/org.atsc.request.keys-request.json",
	"$schema": "https://json-schema.org/draft/2019-09/schema#",
	"title": "Request Keys API",
	"description": "Request Keys API",
	"type": "object",
	"properties": {
		"jsonrpc": {
			"type": "string",
			"enum": [ "2.0" ]
		},
		"id": {
			"type": "integer"
		},
		"method": {
			"type": "string",
			"enum": [ "org.atsc.request.keys" ]
		},
		"params": {
			"type": "object",
			"properties": {
				"keys": {
					"type": "array",
					"items": {
						"type": "string",
						"examples": [ "Numeric", "ArrowUp", "ArrowDown", "ArrowRight", "ArrowLeft", "Back", "BAAppear" ]
					}
				}
			},
			"required": [ "keys" ]
		}
	},
	"required": [ "jsonrpc", "id", "method", "params" ]
}
