{
	"$id": "https://www.atsc-schemas.org/atsc3.0/a344/20210323/org.atsc.notify-audioAccessibilityPref.json",
	"$schema": "https://json-schema.org/draft/2019-09/schema#",
	"title": "Notify Message",
	"description": "audioAccessibilityPref",
	"type": "object",
	"properties": {
		"jsonrpc": {
			"type": "string",
			"enum": [ "2.0" ]
		},
		"method": {
			"type": "string",
			"enum": [ "org.atsc.notify" ]
		},
		"params": {
			"type": "object",
			"properties": {
				"msgType": {
					"type": "string",
					"enum": [ "audioAccessibilityPref" ]
				},
				"videoDescriptionService": {
					"type": "object",
					"properties": {
						"enabled": {
							"type": "boolean"
						},
						"language": {
							"type": "string"
						}
					},
					"required": [ "enabled" ]
				},
				"audioEIService": {
					"type": "object",
					"properties": {
						"enabled": {
							"type": "boolean"
						},
						"language": {
							"type": "string"
						}
					},
					"required": [ "enabled" ]
				}
			},
			"$comment": "required : [ msgType ]",
			"$comment": "minProperties: 2",
			"anyOf": [
				{
					"required": [ "msgType", "videoDescriptionService" ]
				},
				{
					"required": [ "msgType", "audioEIService" ]
				}
			]
		}
	},
	"required": [ "jsonrpc", "method", "params" ]
}
