スキーマ
{
"type": "object",
"properties": {
"viewName": {
"type": "string",
"description": "The name of the view. デフォルトで、UI全体をキャプチャします。"
},
"viewSelectionChannel": {
"type": "integer",
"description": "The selection channel of the view. Can be a value of 1, 2, 3 or 4. By default, the current selection channel of the view is detected automatically."
},
"rect": {
"type": "object",
"description": "キャプチャ領域。デフォルトで、ビュー全体をキャプチャします。",
"properties": {
"x": {
"type": "integer",
"description": "キャプチャ領域の左の位置(単位ピクセル)。"
},
"y": {
"type": "integer",
"description": "キャプチャ領域の上の位置(単位ピクセル)。"
},
"width": {
"type": "integer",
"description": "キャプチャ領域の幅(単位ピクセル)。"
},
"height": {
"type": "integer",
"description": "キャプチャ領域の高さ(単位ピクセル)。"
}
},
"required": [
"x",
"y",
"width",
"height"
]
}
},
"additionalProperties": false
}