{
	"$id": "https://www.atsc-schemas.org/atsc3.0/a344/20230217/org.atsc.dialogEnhancement-request.json",
	"$schema": "https://json-schema.org/draft/2019-09/schema#",
	"title": "Dialog Enhancement API",
	"description": "Dialog Enhancement API",
	"type": "object",
	"properties": {
		"jsonrpc": {
			"type": "string",
			"enum": [ "2.0" ]
		},
		"id": {
			"type": "integer"
		},
		"method": {
			"type": "string",
			"enum": [ "org.atsc.dialogEnhancement" ]
		},
		"params": {
			"type": "object",
			"properties": {
				"dialogEnhancementGain": {
					"type": "integer"
				},
				"dialogEnhancementReset": {
					"type": "boolean"
				}
			},
			"not": {
				"required": [ "dialogEnhancementGain", "dialogEnhancementReset" ]
			}
		}
	},
	"required": [ "jsonrpc", "id", "method", "params" ]
}
