2013-08-18 12:02:17 +02:00
|
|
|
{
|
2016-08-17 11:46:36 +02:00
|
|
|
"type":"object",
|
|
|
|
"required":true,
|
|
|
|
"properties":{
|
|
|
|
"command": {
|
|
|
|
"type" : "string",
|
|
|
|
"required" : true,
|
|
|
|
"enum" : ["image"]
|
|
|
|
},
|
|
|
|
"tan" : {
|
|
|
|
"type" : "integer"
|
|
|
|
},
|
|
|
|
"priority": {
|
|
|
|
"type": "integer",
|
2017-01-17 21:53:35 +01:00
|
|
|
"minimum" : 1,
|
|
|
|
"maximum" : 253,
|
2016-08-17 11:46:36 +02:00
|
|
|
"required": true
|
|
|
|
},
|
2017-03-01 15:23:53 +01:00
|
|
|
"origin": {
|
|
|
|
"type": "string",
|
2019-08-19 20:25:16 +02:00
|
|
|
"minLength" : 4,
|
|
|
|
"maxLength" : 20,
|
|
|
|
"required": false
|
2017-03-01 15:23:53 +01:00
|
|
|
},
|
2016-08-17 11:46:36 +02:00
|
|
|
"duration": {
|
|
|
|
"type": "integer",
|
|
|
|
"required": false
|
|
|
|
},
|
|
|
|
"imagewidth": {
|
|
|
|
"type" : "integer",
|
|
|
|
"minimum": 0
|
|
|
|
},
|
|
|
|
"imageheight": {
|
|
|
|
"type" : "integer",
|
|
|
|
"minimum": 0
|
|
|
|
},
|
|
|
|
"imagedata": {
|
|
|
|
"type": "string",
|
|
|
|
"required": true
|
2019-08-21 16:10:35 +02:00
|
|
|
},
|
|
|
|
"format": {
|
|
|
|
"type": "string",
|
|
|
|
"enum" : ["auto"]
|
|
|
|
},
|
|
|
|
"scale": {
|
|
|
|
"type": "integer",
|
|
|
|
"minimum" : 25,
|
|
|
|
"maximum" : 2000
|
|
|
|
},
|
|
|
|
"name": {
|
|
|
|
"type": "string"
|
2016-08-17 11:46:36 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"additionalProperties": false
|
2013-08-18 12:02:17 +02:00
|
|
|
}
|