{
	"$id": "https://www.atsc-schemas.org/atsc3.0/a344/20250226/org.atsc.eventStream.subscribe-request.json",
	"$schema": "https://json-schema.org/draft/2019-09/schema#",
	"title": "Event Stream Subscribe API",
	"description": "Event Stream Subscribe API",
	"type": "object",
 	 "properties": {
		"jsonrpc": {
			"type": "string", 
			"enum": [ "2.0" ]
		},
		"id": { 
			"type": "integer"
		},
		"method": 
{"type": "string",
	"enum": [
		"org.atsc.eventStream.subscribe"] 
	 },
	"params":{
    "type": "object",
    "properties": {
        "schemeIdUri": {"type": "string", "format": "uri"},
        "value": {"type": "string"},
		"dispatchMode": {
			"type": "string",
			"examples": ["onReceive", "onStart"]
		}
    },
    "required": ["schemeIdUri"]
}},
	"required": [ "jsonrpc", "id", "method", "params" ] 
}
