{ "$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" ] }