TSO prompt JSON

The following schema describes the JSON data structure generated when TSO requires a response from the user:

{
  "TSO PROMPT":{
    "description":"TSO prompt request for the client",
    "type":"object",
    "properties":{
      "VER":{
        "description":"TSO prompt JSON version identifier",
        "type":"string",
        "maxLength":4,
        "required":true
      },
      "HIDDEN":{
        "description":"Specifies if the response should be hidden",
        "type":"string",
        "maxLength":5,
        "enum":["TRUE","FALSE"],
        "required":true
      }
    }
  }
}