{
	"$id": "https://www.atsc-schemas.org/atsc3.0/a344/20210323/org.atsc.notify-rmpMediaTimeChange.json",
	"$schema": "https://json-schema.org/draft/2019-09/schema#",
	"title": "RMP Media Time Change Notification API",
	"description": "RMP Media Time 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": ["rmpMediaTimeChange"]},
        "currentTime": {"type": "number", "minimum": 0},
        "startDate": {"type": "string", "format": "xs:dateTime"}
    },
    "required": ["msgType", "currentTime"]
}},
	"required": [ "jsonrpc", "method", "params" ] 
}
