Properties
| Name | Type | Description |
|---|---|---|
| InputCommand | object | |
| ConfirmedFlag | boolean | |
| FunctionKey | integer | |
| TextInput | string | |
| DigitInput | integer | |
| Password | string | |
| MenuEntryNumber | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Input",
"title": "Input",
"type": "object",
"properties": {
"InputCommand": {
"$ref": "#/components/schemas/InputCommand"
},
"ConfirmedFlag": {
"type": "boolean"
},
"FunctionKey": {
"type": "integer"
},
"TextInput": {
"type": "string"
},
"DigitInput": {
"type": "integer"
},
"Password": {
"type": "string"
},
"MenuEntryNumber": {
"type": "array",
"items": {
"type": "integer"
}
}
},
"required": [
"InputCommand"
]
}