{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "CommandExecTerminalSize": { "properties": { "cols": { "format": "uint16", "minimum": 0.0, "type": "integer" }, "rows": { "format": "uint16", "minimum": 0.0, "type": "integer" } }, "required": [ "cols", "rows" ], "type": "object" } }, "properties": { "processId": { "type": "string" }, "size": { "$ref": "#/definitions/CommandExecTerminalSize" } }, "required": [ "processId", "size" ], "title": "CommandExecResizeParams", "type": "object" }