{
	"$id": "https://www.atsc-schemas.org/atsc3.0/a344/cs-20240822/org.atsc.drmOperation-response.json",
	"$schema": "https://json-schema.org/draft/2019-09/schema#",
	"title": "DRM Operation API",
	"description": "DRM Operation API",
	"type": "object",
	"properties": {
		"jsonrpc": {
			"type": "string",
			"enum": [ "2.0" ]
		},
		"id": {
			"type": "integer"
		},
		"result": {
			"type": "object",
			"properties": {
				"message": {
					"type": "array",
					"items": {
						"type": "object"
					}
				}
			}
		},
		"error": {
			"type": "object",
			"properties": {
				"code": {
					"type": "integer"
				},
				"message": {
					"type": "string"
				},
				"data": {

				}
			},
			"required": [ "code", "message" ]
		}
	},
	"required": [ "jsonrpc", "id" ],
	"oneOf": [ { "required": [ "result" ] }, { "required": [ "error" ] } ]
}
