{
	"$id": "https://www.atsc-schemas.org/atsc3.0/a344/cs-20250508/org.atsc.setRMPURL-request.json",
	"$schema": "https://json-schema.org/draft/2019-09/schema#",
	"title": "Set RMP URL API",
	"description": "Set RMP URL API",
	"type": "object",
 	 "properties": {
		"jsonrpc": {
			"type": "string", 
			"enum": [ "2.0" ]
		},
		"id": { 
			"type": "integer"
		},
		"method": 
{"type": "string",
	"enum": [
		"org.atsc.setRMPURL"] 
	 },
	"params":{
    "type": "object",
    "properties": {
        "operation": {
            "type": "string",
            "enum": ["startRmp", "stopRmp", "pauseRmp", "resumeRmp", "fastForwardRmp", "rewindRmp", "skipForwardRmp", "skipBackwardsRmp", "resumeService"]
        },
        "rmpurl": {"type": "string", "format": "uri"},
        "rmpSyncTime": {"type": "number"},
        "endOperation": {
            "type": "string",
            "enum": ["stopRmp", "pauseRmp", "resumeService"]
        }
    }
}},
	"required": [ "jsonrpc", "id", "method", "params" ] 
}
