{
	"$id": "https://www.atsc-schemas.org/atsc3.0/a344/cs-20250508/org.atsc.notify-contentRecoveryStateChange.json",
	"$schema": "https://json-schema.org/draft/2019-09/schema#",
	"title": "Content Recovery State Change Notification API",
	"description": "Content Recovery State Change Notification API",
	"type": "object",
 	 "properties": {
		"jsonrpc": {
			"type": "string", 
			"enum": [ "2.0" ]
		},
		"method": 
{"type": "string",
	"enum": [
		"org.atsc.notify"] 
	 },
	"params":{
    "type": "object",
    "properties": {
        "msgType": {
            "type": "string",
            "enum": ["contentRecoveryStateChange"]
        },
        "audioWatermark": {
            "type": "integer",
            "minimum": 0,
            "maximum": 2
        },
        "videoWatermark": {
            "type": "integer",
            "minimum": 0,
            "maximum": 2
        },
        "audioFingerprint": {
            "type": "integer",
            "minimum": 0,
            "maximum": 2
        },
        "videoFingerprint": {
            "type": "integer",
            "minimum": 0,
            "maximum": 2
        }
    },
    "required": ["msgType"]
}},
	"required": [ "jsonrpc", "method", "params" ] 
}
