{
	"$id": "https://www.atsc-schemas.org/atsc3.0/a344/20250226/org.atsc.scale-position-request.json",
	"$schema": "https://json-schema.org/draft/2019-09/schema#",
	"title": "Video Scaling and Positioning API",
	"description": "Video Scaling and Positioning API",
	"type": "object",
 	 "properties": {
		"jsonrpc": {
			"type": "string", 
			"enum": [ "2.0" ]
		},
		"id": { 
			"type": "integer"
		},
		"method": 
{"type": "string",
	"enum": [
		"org.atsc.scale-position"] 
	 },
	"params":{
    "type": "object",
    "properties": {
        "scaleFactor": {
            "type": "number",
            "minimum": 10.0,
            "maximum": 100.0
        },
        "xPos": {
            "type": "number",
            "minimum": 0.0,
            "maximum": 100.0
        },
        "yPos": {
            "type": "number",
            "minimum": 0.0,
            "maximum": 100.0
       }
    },
    "required": ["scaleFactor", "xPos", "yPos"]
}},
	"required": [ "jsonrpc", "id", "method", "params" ] 
}
