{
	"$id": "https://www.atsc-schemas.org/atsc3.0/a344/cs-20250508/org.atsc.eventStream.event-notification.json",
	"$schema": "https://json-schema.org/draft/2019-09/schema#",
	"title": "Event Stream Event Notification API",
	"description": "Event Stream Event Notification API",
	"type": "object",
	"properties": {
		"jsonrpc": {
			"type": "string",
			"enum": [ "2.0" ]
		},
		"method": {
			"type": "string",
			"enum": [ "org.atsc.eventStream.event" ]
		},
		"params": {
			"type": "object",
			"properties": {
				"schemeIdUri": {
					"type": "string",
					"format": "uri"
				},
				"value": {
					"type": "string"
				},
				"currentTime": {
					"type": "number",
					"minimum": 0
				},
				"eventTime": {
					"type": "number",
					"minimum": 0
				},
				"duration": {
					"type": "number",
					"minimum": 0
				},
				"id": {
					"type": "integer",
					"minimum": 0,
					"maximum": 4294967295
				},
				"data": {
				},
				"contentEncoding": {
					"type": "string"
				}
			},
			"required": [ "schemeIdUri", "eventTime" ]
		}
	},
	"required": [ "jsonrpc", "method", "params" ]
}
