{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InputUpdate", "title": "InputUpdate", "type": "object", "description": "Definition: Content of the Input Update message. : It conveys \t\t\t\tupdate of the display of an Input request in progress.", "properties": { "MessageReference": { "$ref": "#/components/schemas/MessageReference" }, "OutputContent": { "$ref": "#/components/schemas/OutputContent" }, "MenuEntry": { "type": "array", "items": { "$ref": "#/components/schemas/MenuEntry" } }, "OutputSignature": { "type": "string", "format": "byte", "pattern": "^.+$" }, "MinLength": { "type": "integer" }, "MaxLength": { "type": "integer" }, "MaxDecimalLength": { "type": "integer" } }, "required": [ "MessageReference", "OutputContent" ] }