{
  "openapi": "3.0.1",
  "info": {
    "version": "1.3",
    "title": "ET ACAS API",
    "description": "<h3>ET ACAS API Documentation </h3> <br><b>Published Date:</b> 5 September 2022<br><b>Last Updated:</b> 19 February 2025 <br><b>Author: </b> Harpreet Jhita<br> <b> Requirement:</b> API for ACAS  <br><b>Version History:</b> <li>v1: ET ACAS API is added</li><li>v1.1: Documents API added</li><li>v1.2: Schemas updated</li><li>v1.3: Schemas updated with case creation endpoints</li>"
  },
  "servers": [
    {
      "url": "http://cft-api-mgmt-demo.azure-api.net/et-sya-api,https://cft-api-mgmt-demo.azure-api.net/et-sya-api"
    }
  ],
  "paths": {
    "/vetAndAcceptCase": {
      "post": {
        "tags": [
          "acas-controller"
        ],
        "summary": "Endpoint to vet and accept a case",
        "operationId": "vetAndAcceptCase",
        "parameters": [
          {
            "name": "caseId",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string",
              "example": "1234567890123456"
            }
          },
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "schema": {
              "type": "string",
              "example": "Bearer token"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "*/*": {
                "schema": {
                  "$ref": "#/components/schemas/CaseDetails"
                }
              }
            }
          }
        }
      }
    },
    "/getLastModifiedCaseList": {
      "get": {
        "tags": [
          "acas-controller"
        ],
        "summary": "Return a list of CCD case IDs from a provided date",
        "operationId": "getLastModifiedCaseList",
        "parameters": [
          {
            "name": "datetime",
            "in": "query",
            "description": "Format - date time. The date from which the query should return cases which have been modified",
            "schema": {
              "type": "string",
              "example": "2022-10-07T10:32:37.791Z"
            }
          },
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "schema": {
              "type": "string",
              "example": "Bearer token"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful Operation",
            "content": {
              "*/*": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "integer",
                    "format": "int64",
                    "example": 1234567890123456
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request"
          },
          "500": {
            "description": "Internal Server Error"
          }
        }
      }
    },
    "/getCaseData": {
      "get": {
        "tags": [
          "acas-controller"
        ],
        "summary": "Return case data from a list of provided IDs",
        "operationId": "getCaseData",
        "parameters": [
          {
            "name": "caseIds",
            "in": "query",
            "description": "A list of CaseIds to search. Should be comma seperated",
            "schema": {
              "type": "string",
              "example": "1663235002066080,1663235002066081"
            }
          },
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "schema": {
              "type": "string",
              "example": "Bearer token"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful Operation",
            "content": {
              "*/*": {
                "schema": {
                  "$ref": "#/components/schemas/CaseDetails"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request"
          },
          "500": {
            "description": "Internal Server Error"
          }
        }
      }
    },
    "/getAcasDocuments": {
      "get": {
        "tags": [
          "acas-controller"
        ],
        "summary": "Return a list of documents on a case",
        "operationId": "getAcasDocuments",
        "parameters": [
          {
            "name": "caseId",
            "in": "query",
            "description": "CCD Case ID",
            "schema": {
              "type": "string",
              "example": "1663235002066080"
            }
          },
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "schema": {
              "type": "string",
              "example": "Bearer token"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful Operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "example": {
                    "ET1": [
                      {
                        "documentId": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa",
                        "modifiedOn": "2022-10-07T10:32:37.791Z"
                      }
                    ],
                    "ET3": [
                      {
                        "documentId": "bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb",
                        "modifiedOn": "2023-02-02T15:24:52.000+00:00"
                      },
                      {
                        "documentId": "cccccccc-cccc-cccc-cccc-cccccccccccc",
                        "modifiedOn": "2023-02-02T16:07:28.000+00:00"
                      }
                    ]
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request"
          },
          "500": {
            "description": "Internal Server Error"
          }
        }
      }
    },
    "/downloadAcasDocuments": {
      "get": {
        "tags": [
          "acas-controller"
        ],
        "summary": "Get a document from CDAM in binary format",
        "operationId": "downloadAcasDocuments",
        "parameters": [
          {
            "name": "documentId",
            "in": "query",
            "description": "UUID for the document in DM Store",
            "schema": {
              "type": "string",
              "example": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa"
            }
          },
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "schema": {
              "type": "string",
              "example": "Bearer token"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful Operation"
          },
          "400": {
            "description": "Bad Request"
          },
          "500": {
            "description": "Internal Server Error"
          }
        }
      }
    },
    "/cases/initiate-case": {
      "post": {
        "tags": [
          "manage-case-controller"
        ],
        "summary": "Create a draft case for the user",
        "operationId": "createDraftCase",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "case_type_id": {
                    "type": "string",
                    "example": "ET_EnglandWales"
                  }
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "*/*": {
                "schema": {
                  "$ref": "#/components/schemas/CaseDetails"
                }
              }
            }
          }
        }
      }
    },
    "/cases/update-case": {
      "put": {
        "tags": [
          "manage-case-controller"
        ],
        "summary": "Update draft case API method",
        "operationId": "updateDraftCase",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CaseRequest"
              },
              "example": {
                "case_id": "1739920264601001",
                "case_type_id": "ET_EnglandWales",
                "case_data": {
                  "jurCodesCollection": [
                    {
                      "id": "f7f10b22-88c0-43b9-a917-f7fff81e006y",
                      "value": {
                        "juridictionCodesList": "DAG"
                      }
                    }
                  ],
                  "typesOfClaim": [
                    "discrimination"
                  ],
                  "positionType": "ET1 Online submission",
                  "conciliationTrack": "Open Track",
                  "managingOffice": "Leeds",
                  "caseType": "Single",
                  "claimant_TypeOfClaimant": "Individual",
                  "claimantIndType": {
                    "claimant_title1": "Dr",
                    "claimant_first_names": "Grayson",
                    "claimant_last_name": "Becker",
                    "claimant_date_of_birth": "1998-12-15",
                    "claimant_gender": "Male"
                  },
                  "claimantType": {
                    "claimant_addressUK": {
                      "AddressLine1": "4 Little Meadows",
                      "PostTown": "Bradley",
                      "Country": "United Kingdom",
                      "PostCode": "LL11 4AR"
                    }
                  },
                  "et1OnlineSubmission": "Yes",
                  "respondentCollection": [
                    {
                      "value": {
                        "respondent_name": "Mrs Test Auto",
                        "respondent_ACAS_question": "Yes",
                        "respondent_ACAS": "R807115/23/89",
                        "responseReceived": "No",
                        "respondent_address": {
                          "AddressLine1": "78 East Wonford Hill",
                          "PostTown": "Exeter",
                          "Country": "United Kingdom",
                          "PostCode": "EX1 3DD"
                        }
                      },
                      "id": "e764f874-e937-4642-ac67-4af2e2fd05f6"
                    }
                  ],
                  "claimantWorkAddressQuestion": "No",
                  "claimantWorkAddress": {
                    "claimant_work_address": {
                      "Country": "United Kingdom",
                      "PostCode": "MK5 7HH",
                      "PostTown": "Milton Keynes",
                      "AddressLine1": "The Burnt Oak",
                      "AddressLine2": "Egerton Gate",
                      "AddressLine3": "Shenley Brook End"
                    }
                  },
                  "claimantWorkAddressQRespondent": {
                    "value": {
                      "code": "Mrs Test Auto",
                      "label": "Mrs Test Auto - 78 East Wonford Hill, Exeter, EX1 3DD, United Kingdom"
                    },
                    "list_items": [
                      {
                        "code": "Mrs Test Auto",
                        "label": "Mrs Test Auto - 78 East Wonford Hill, Exeter, EX1 3DD, United Kingdom"
                      }
                    ]
                  },
                  "claimantRequests": {
                    "claimant_compensation": "Yes",
                    "claimant_tribunal": "Yes",
                    "claimant_old_job": "No",
                    "claimant_another_job": "No",
                    "claimant_compensation_amount": "75000"
                  },
                  "claimantOtherType": {
                    "claimant_occupation": "Builder",
                    "claimant_employed_from": "2009-05-14",
                    "claimant_employed_currently": "No",
                    "claimant_employed_to": "2021-04-20",
                    "claimant_disabled": "No",
                    "claimant_notice_period": "No",
                    "claimant_notice_period_unit": "Months",
                    "claimant_notice_period_duration": "1",
                    "claimant_average_weekly_hours": "37",
                    "claimant_pay_before_tax": "62000",
                    "claimant_pay_after_tax": "34000",
                    "claimant_pay_cycle": "Annual",
                    "claimant_pension_contribution": "Yes",
                    "claimant_benefits": "No"
                  },
                  "claimantRepresentedQuestion": "No"
                }
              }
            }          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "*/*": {
                "schema": {
                  "$ref": "#/components/schemas/CaseDetails"
                }
              }
            }
          }
        }
      }
    },
    "/cases/submit-case": {
      "put": {
        "tags": [
          "manage-case-controller"
        ],
        "summary": "Submit a draft case API method",
        "operationId": "submitCase",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CaseRequest"
              },
              "example": {
                "case_id": "1739920264601001",
                "case_type_id": "ET_EnglandWales",
                "case_data": {
                  "jurCodesCollection": [
                    {
                      "id": "f7f10b22-88c0-43b9-a917-f7fff81e006y",
                      "value": {
                        "juridictionCodesList": "DAG"
                      }
                    }
                  ],
                  "typesOfClaim": [
                    "discrimination"
                  ],
                  "positionType": "ET1 Online submission",
                  "conciliationTrack": "Open Track",
                  "managingOffice": "Leeds",
                  "caseType": "Single",
                  "claimant_TypeOfClaimant": "Individual",
                  "claimantIndType": {
                    "claimant_title1": "Dr",
                    "claimant_first_names": "Grayson",
                    "claimant_last_name": "Becker",
                    "claimant_date_of_birth": "1998-12-15",
                    "claimant_gender": "Male"
                  },
                  "claimantType": {
                    "claimant_addressUK": {
                      "AddressLine1": "4 Little Meadows",
                      "PostTown": "Bradley",
                      "Country": "United Kingdom",
                      "PostCode": "LL11 4AR"
                    }
                  },
                  "et1OnlineSubmission": "Yes",
                  "respondentCollection": [
                    {
                      "value": {
                        "respondent_name": "Mrs Test Auto",
                        "respondent_ACAS_question": "Yes",
                        "respondent_ACAS": "R807115/23/89",
                        "responseReceived": "No",
                        "respondent_address": {
                          "AddressLine1": "78 East Wonford Hill",
                          "PostTown": "Exeter",
                          "Country": "United Kingdom",
                          "PostCode": "EX1 3DD"
                        }
                      },
                      "id": "e764f874-e937-4642-ac67-4af2e2fd05f6"
                    }
                  ],
                  "claimantWorkAddressQuestion": "No",
                  "claimantWorkAddress": {
                    "claimant_work_address": {
                      "Country": "United Kingdom",
                      "PostCode": "MK5 7HH",
                      "PostTown": "Milton Keynes",
                      "AddressLine1": "The Burnt Oak",
                      "AddressLine2": "Egerton Gate",
                      "AddressLine3": "Shenley Brook End"
                    }
                  },
                  "claimantWorkAddressQRespondent": {
                    "value": {
                      "code": "Mrs Test Auto",
                      "label": "Mrs Test Auto - 78 East Wonford Hill, Exeter, EX1 3DD, United Kingdom"
                    },
                    "list_items": [
                      {
                        "code": "Mrs Test Auto",
                        "label": "Mrs Test Auto - 78 East Wonford Hill, Exeter, EX1 3DD, United Kingdom"
                      }
                    ]
                  },
                  "claimantRequests": {
                    "claimant_compensation": "Yes",
                    "claimant_tribunal": "Yes",
                    "claimant_old_job": "No",
                    "claimant_another_job": "No",
                    "claimant_compensation_amount": "75000"
                  },
                  "claimantOtherType": {
                    "claimant_occupation": "Builder",
                    "claimant_employed_from": "2009-05-14",
                    "claimant_employed_currently": "No",
                    "claimant_employed_to": "2021-04-20",
                    "claimant_disabled": "No",
                    "claimant_notice_period": "No",
                    "claimant_notice_period_unit": "Months",
                    "claimant_notice_period_duration": "1",
                    "claimant_average_weekly_hours": "37",
                    "claimant_pay_before_tax": "62000",
                    "claimant_pay_after_tax": "34000",
                    "claimant_pay_cycle": "Annual",
                    "claimant_pension_contribution": "Yes",
                    "claimant_benefits": "No"
                  },
                  "claimantRepresentedQuestion": "No"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "*/*": {
                "schema": {
                  "$ref": "#/components/schemas/CaseDetails"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "AdminDecisionNotificationStateUpdateRequest": {
        "type": "object",
        "properties": {
          "case_id": {
            "type": "string"
          },
          "case_type_id": {
            "type": "string"
          },
          "app_id": {
            "type": "string"
          },
          "admin_decision_id": {
            "type": "string"
          }
        }
      },
      "CaseDetails": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "format": "int64"
          },
          "jurisdiction": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "case_type_id": {
            "type": "string"
          },
          "created_date": {
            "type": "string",
            "format": "date-time"
          },
          "last_modified": {
            "type": "string",
            "format": "date-time"
          },
          "locked_by_user_id": {
            "type": "integer",
            "format": "int32"
          },
          "security_level": {
            "type": "integer",
            "format": "int32"
          },
          "case_data": {
            "$ref": "#/components/schemas/CaseData"
          },
          "security_classification": {
            "type": "string",
            "enum": [
              "PUBLIC",
              "PRIVATE",
              "RESTRICTED"
            ]
          },
          "callback_response_status": {
            "type": "string"
          }
        }
      },
      "SubmitStoredRespondToTribunalRequest": {
        "type": "object",
        "properties": {
          "case_id": {
            "type": "string"
          },
          "case_type_id": {
            "type": "string"
          },
          "order_id": {
            "type": "string"
          },
          "stored_response_id": {
            "type": "string"
          }
        }
      },
      "SubmitStoredRespondToApplicationRequest": {
        "type": "object",
        "properties": {
          "case_id": {
            "type": "string"
          },
          "case_type_id": {
            "type": "string"
          },
          "application_id": {
            "type": "string"
          },
          "stored_response_id": {
            "type": "string"
          }
        }
      },
      "DocumentType": {
        "type": "object",
        "properties": {
          "typeOfDocument": {
            "type": "string"
          },
          "uploadedDocument": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "ownerDocument": {
            "type": "string"
          },
          "creationDate": {
            "type": "string"
          },
          "shortDescription": {
            "type": "string"
          },
          "topLevelDocuments": {
            "type": "string"
          },
          "startingClaimDocuments": {
            "type": "string"
          },
          "responseClaimDocuments": {
            "type": "string"
          },
          "initialConsiderationDocuments": {
            "type": "string"
          },
          "caseManagementDocuments": {
            "type": "string"
          },
          "withdrawalSettledDocuments": {
            "type": "string"
          },
          "hearingsDocuments": {
            "type": "string"
          },
          "judgmentAndReasonsDocuments": {
            "type": "string"
          },
          "reconsiderationDocuments": {
            "type": "string"
          },
          "miscDocuments": {
            "type": "string"
          },
          "documentType": {
            "type": "string"
          },
          "dateOfCorrespondence": {
            "type": "string"
          },
          "docNumber": {
            "type": "string"
          },
          "tornadoEmbeddedPdfUrl": {
            "type": "string"
          },
          "excludeFromDcf": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "documentIndex": {
            "type": "string"
          }
        }
      },
      "GenericTypeItemDocumentType": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/DocumentType"
          }
        }
      },
      "PseResponseType": {
        "type": "object",
        "properties": {
          "date": {
            "type": "string"
          },
          "from": {
            "type": "string"
          },
          "author": {
            "type": "string"
          },
          "response": {
            "type": "string"
          },
          "hasSupportingMaterial": {
            "type": "string"
          },
          "supportingMaterial": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemDocumentType"
            }
          },
          "copyToOtherParty": {
            "type": "string"
          },
          "copyNoGiveDetails": {
            "type": "string"
          },
          "responseState": {
            "type": "string"
          },
          "dateTime": {
            "type": "string"
          },
          "isECC": {
            "type": "string"
          }
        }
      },
      "SendNotificationAddResponseRequest": {
        "type": "object",
        "properties": {
          "case_id": {
            "type": "string"
          },
          "case_type_id": {
            "type": "string"
          },
          "send_notification_id": {
            "type": "string"
          },
          "supportingMaterialFile": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "pseResponseType": {
            "$ref": "#/components/schemas/PseResponseType"
          }
        }
      },
      "UploadedDocumentType": {
        "type": "object",
        "properties": {
          "document_binary_url": {
            "type": "string"
          },
          "document_filename": {
            "type": "string"
          },
          "document_url": {
            "type": "string"
          },
          "category_id": {
            "type": "string"
          },
          "upload_timestamp": {
            "type": "string"
          }
        }
      },
      "RespondToApplicationRequest": {
        "type": "object",
        "properties": {
          "case_id": {
            "type": "string"
          },
          "case_type_id": {
            "type": "string"
          },
          "applicationId": {
            "type": "string"
          },
          "supportingMaterialFile": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "response": {
            "$ref": "#/components/schemas/TseRespondType"
          },
          "isRespondingToRequestOrOrder": {
            "type": "boolean"
          }
        }
      },
      "TseRespondType": {
        "type": "object",
        "properties": {
          "date": {
            "type": "string"
          },
          "from": {
            "type": "string"
          },
          "response": {
            "type": "string"
          },
          "hasSupportingMaterial": {
            "type": "string"
          },
          "supportingMaterial": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemDocumentType"
            }
          },
          "copyToOtherParty": {
            "type": "string"
          },
          "copyNoGiveDetails": {
            "type": "string"
          },
          "summaryPdf": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "enterResponseTitle": {
            "type": "string"
          },
          "additionalInformation": {
            "type": "string"
          },
          "addDocument": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemDocumentType"
            }
          },
          "isCmoOrRequest": {
            "type": "string"
          },
          "cmoMadeBy": {
            "type": "string"
          },
          "requestMadeBy": {
            "type": "string"
          },
          "madeByFullName": {
            "type": "string"
          },
          "isResponseRequired": {
            "type": "string"
          },
          "selectPartyRespond": {
            "type": "string"
          },
          "selectPartyNotify": {
            "type": "string"
          },
          "viewedByClaimant": {
            "type": "string"
          },
          "dateTime": {
            "type": "string"
          },
          "applicationType": {
            "type": "string"
          }
        }
      },
      "ClaimantApplicationRequest": {
        "type": "object",
        "properties": {
          "case_id": {
            "type": "string"
          },
          "case_type_id": {
            "type": "string"
          },
          "type_c": {
            "type": "boolean"
          },
          "claimant_tse": {
            "$ref": "#/components/schemas/ClaimantTse"
          }
        }
      },
      "ClaimantTse": {
        "type": "object",
        "properties": {
          "contactApplicationType": {
            "type": "string"
          },
          "contactApplicationText": {
            "type": "string"
          },
          "contactApplicationFile": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "copyToOtherPartyYesOrNo": {
            "type": "string"
          },
          "copyToOtherPartyText": {
            "type": "string"
          },
          "storedApplicationId": {
            "type": "string"
          }
        }
      },
      "SendNotificationStateUpdateRequest": {
        "type": "object",
        "properties": {
          "case_id": {
            "type": "string"
          },
          "case_type_id": {
            "type": "string"
          },
          "send_notification_id": {
            "type": "string"
          }
        }
      },
      "HubLinksStatuses": {
        "type": "object",
        "properties": {
          "personalDetails": {
            "type": "string"
          },
          "et1ClaimForm": {
            "type": "string"
          },
          "respondentResponse": {
            "type": "string"
          },
          "hearingDetails": {
            "type": "string"
          },
          "requestsAndApplications": {
            "type": "string"
          },
          "respondentApplications": {
            "type": "string"
          },
          "contactTribunal": {
            "type": "string"
          },
          "tribunalOrders": {
            "type": "string"
          },
          "tribunalJudgements": {
            "type": "string"
          },
          "documents": {
            "type": "string"
          }
        }
      },
      "HubLinksStatusesRequest": {
        "type": "object",
        "properties": {
          "case_id": {
            "type": "string"
          },
          "case_type_id": {
            "type": "string"
          },
          "hub_links_statuses": {
            "$ref": "#/components/schemas/HubLinksStatuses"
          }
        }
      },
      "CaseRequest": {
        "type": "object",
        "properties": {
          "case_id": {
            "type": "string",
            "example": "1234567890123456"
          },
          "case_type_id": {
            "type": "string",
            "example": "ET_EnglandWales"
          },
          "case_data": {
            "$ref": "#/components/schemas/CaseData"
          }
        }
      },
      "TribunalResponseViewedRequest": {
        "type": "object",
        "properties": {
          "case_id": {
            "type": "string"
          },
          "case_type_id": {
            "type": "string"
          },
          "appId": {
            "type": "string"
          },
          "responseId": {
            "type": "string"
          }
        }
      },
      "ChangeApplicationStatusRequest": {
        "type": "object",
        "properties": {
          "case_id": {
            "type": "string"
          },
          "case_type_id": {
            "type": "string"
          },
          "application_id": {
            "type": "string"
          },
          "new_status": {
            "type": "string"
          }
        }
      },
      "ClaimantBundlesRequest": {
        "type": "object",
        "properties": {
          "case_id": {
            "type": "string"
          },
          "case_type_id": {
            "type": "string"
          },
          "claimant_bundles": {
            "$ref": "#/components/schemas/HearingBundleType"
          }
        }
      },
      "HearingBundleType": {
        "type": "object",
        "properties": {
          "agreedDocWith": {
            "type": "string"
          },
          "agreedDocWithBut": {
            "type": "string"
          },
          "agreedDocWithNo": {
            "type": "string"
          },
          "hearing": {
            "type": "string"
          },
          "whatDocuments": {
            "type": "string"
          },
          "whoseDocuments": {
            "type": "string"
          },
          "uploadFile": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "formattedSelectedHearing": {
            "type": "string"
          },
          "uploadDateTime": {
            "type": "string"
          }
        }
      },
      "ModifyCaseUserRole": {
        "type": "object",
        "properties": {
          "case_id": {
            "type": "string"
          },
          "user_id": {
            "type": "string"
          },
          "case_role": {
            "type": "string"
          },
          "case_type_id": {
            "type": "string"
          },
          "respondent_name": {
            "type": "string"
          }
        }
      },
      "ModifyCaseUserRolesRequest": {
        "type": "object",
        "properties": {
          "case_users": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ModifyCaseUserRole"
            }
          }
        }
      },
      "FindCaseForRoleModificationRequest": {
        "type": "object",
        "properties": {
          "caseSubmissionReference": {
            "type": "string"
          },
          "respondentName": {
            "type": "string"
          },
          "claimantFirstNames": {
            "type": "string"
          },
          "claimantLastName": {
            "type": "string"
          }
        }
      },
      "Address": {
        "type": "object",
        "properties": {
          "AddressLine1": {
            "type": "string"
          },
          "AddressLine2": {
            "type": "string"
          },
          "AddressLine3": {
            "type": "string"
          },
          "PostTown": {
            "type": "string"
          },
          "County": {
            "type": "string"
          },
          "PostCode": {
            "type": "string"
          },
          "Country": {
            "type": "string"
          }
        }
      },
      "DocumentTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/DocumentType"
          }
        }
      },
      "DynamicFixedListType": {
        "type": "object",
        "properties": {
          "value": {
            "$ref": "#/components/schemas/DynamicValueType"
          },
          "selectedLabel": {
            "type": "string"
          },
          "selectedCode": {
            "type": "string"
          },
          "list_items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DynamicValueType"
            }
          }
        }
      },
      "DynamicValueType": {
        "type": "object",
        "properties": {
          "code": {
            "type": "string"
          },
          "label": {
            "type": "string"
          }
        }
      },
      "ET3CaseDetailsLinksStatuses": {
        "type": "object",
        "properties": {
          "personalDetails": {
            "type": "string"
          },
          "et1ClaimForm": {
            "type": "string"
          },
          "respondentResponse": {
            "type": "string"
          },
          "hearingDetails": {
            "type": "string"
          },
          "respondentRequestsAndApplications": {
            "type": "string"
          },
          "claimantApplications": {
            "type": "string"
          },
          "contactTribunal": {
            "type": "string"
          },
          "tribunalOrders": {
            "type": "string"
          },
          "tribunalJudgements": {
            "type": "string"
          },
          "documents": {
            "type": "string"
          }
        }
      },
      "ET3HubLinksStatuses": {
        "type": "object",
        "properties": {
          "contactDetails": {
            "type": "string"
          },
          "employerDetails": {
            "type": "string"
          },
          "conciliationAndEmployeeDetails": {
            "type": "string"
          },
          "payPensionBenefitDetails": {
            "type": "string"
          },
          "contestClaim": {
            "type": "string"
          },
          "employersContractClaim": {
            "type": "string"
          },
          "checkYorAnswers": {
            "type": "string"
          }
        }
      },
      "Et3Request": {
        "type": "object",
        "properties": {
          "caseSubmissionReference": {
            "type": "string"
          },
          "requestType": {
            "type": "string"
          },
          "caseTypeId": {
            "type": "string"
          },
          "caseDetailsLinksSectionId": {
            "type": "string"
          },
          "caseDetailsLinksSectionStatus": {
            "type": "string"
          },
          "responseHubLinksSectionId": {
            "type": "string"
          },
          "responseHubLinksSectionStatus": {
            "type": "string"
          },
          "respondent": {
            "$ref": "#/components/schemas/RespondentSumTypeItem"
          }
        }
      },
      "Et3VettingType": {
        "type": "object",
        "properties": {
          "et3ChooseRespondent": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "et3IsThereAnEt3Response": {
            "type": "string"
          },
          "et3NoEt3Response": {
            "type": "string"
          },
          "et3GeneralNotes": {
            "type": "string"
          },
          "et3IsThereACompaniesHouseSearchDocument": {
            "type": "string"
          },
          "et3CompanyHouseDocument": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "et3GeneralNotesCompanyHouse": {
            "type": "string"
          },
          "et3IsThereAnIndividualSearchDocument": {
            "type": "string"
          },
          "et3IndividualInsolvencyDocument": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "et3GeneralNotesIndividualInsolvency": {
            "type": "string"
          },
          "et3LegalIssue": {
            "type": "string"
          },
          "et3LegalIssueGiveDetails": {
            "type": "string"
          },
          "et3GeneralNotesLegalEntity": {
            "type": "string"
          },
          "et3ResponseInTime": {
            "type": "string"
          },
          "et3ResponseInTimeDetails": {
            "type": "string"
          },
          "et3DoWeHaveRespondentsName": {
            "type": "string"
          },
          "et3GeneralNotesRespondentName": {
            "type": "string"
          },
          "et3DoesRespondentsNameMatch": {
            "type": "string"
          },
          "et3RespondentNameMismatchDetails": {
            "type": "string"
          },
          "et3GeneralNotesRespondentNameMatch": {
            "type": "string"
          },
          "et3DoWeHaveRespondentsAddress": {
            "type": "string"
          },
          "et3DoesRespondentsAddressMatch": {
            "type": "string"
          },
          "et3RespondentAddressMismatchDetails": {
            "type": "string"
          },
          "et3GeneralNotesRespondentAddress": {
            "type": "string"
          },
          "et3GeneralNotesAddressMatch": {
            "type": "string"
          },
          "et3IsCaseListedForHearing": {
            "type": "string"
          },
          "et3IsCaseListedForHearingDetails": {
            "type": "string"
          },
          "et3GeneralNotesCaseListed": {
            "type": "string"
          },
          "et3IsThisLocationCorrect": {
            "type": "string"
          },
          "et3GeneralNotesTransferApplication": {
            "type": "string"
          },
          "et3RegionalOffice": {
            "type": "string"
          },
          "et3WhyWeShouldChangeTheOffice": {
            "type": "string"
          },
          "et3ContestClaim": {
            "type": "string"
          },
          "et3ContestClaimGiveDetails": {
            "type": "string"
          },
          "et3GeneralNotesContestClaim": {
            "type": "string"
          },
          "et3ContractClaimSection7": {
            "type": "string"
          },
          "et3ContractClaimSection7Details": {
            "type": "string"
          },
          "et3GeneralNotesContractClaimSection7": {
            "type": "string"
          },
          "et3Rule26": {
            "type": "string"
          },
          "et3Rule26Details": {
            "type": "string"
          },
          "et3SuggestedIssues": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "et3SuggestedIssuesStrikeOut": {
            "type": "string"
          },
          "et3SuggestedIssueInterpreters": {
            "type": "string"
          },
          "et3SuggestedIssueJurisdictional": {
            "type": "string"
          },
          "et3SuggestedIssueAdjustments": {
            "type": "string"
          },
          "et3SuggestedIssueRule50": {
            "type": "string"
          },
          "et3SuggestedIssueTimePoints": {
            "type": "string"
          },
          "et3GeneralNotesRule26": {
            "type": "string"
          },
          "et3AdditionalInformation": {
            "type": "string"
          },
          "et3VettingDocument": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          }
        }
      },
      "RespondentSumType": {
        "type": "object",
        "properties": {
          "response_status": {
            "type": "string"
          },
          "responseToClaim": {
            "type": "string"
          },
          "rejection_reason": {
            "type": "string"
          },
          "rejection_reason_other": {
            "type": "string"
          },
          "responseOutOfTime": {
            "type": "string"
          },
          "responseNotOnPrescribedForm": {
            "type": "string"
          },
          "responseRequiredInfoAbsent": {
            "type": "string"
          },
          "responseNotes": {
            "type": "string"
          },
          "response_referred_to_judge": {
            "type": "string"
          },
          "response_returned_from_judge": {
            "type": "string"
          },
          "respondent_name": {
            "type": "string"
          },
          "respondent_hearing_panel_preference": {
            "type": "string"
          },
          "respondent_hearing_panel_preference_reason": {
            "type": "string"
          },
          "respondentType": {
            "type": "string"
          },
          "respondentOrganisation": {
            "type": "string"
          },
          "respondentFirstName": {
            "type": "string"
          },
          "respondentLastName": {
            "type": "string"
          },
          "respondent_ACAS_question": {
            "type": "string"
          },
          "respondent_ACAS": {
            "type": "string"
          },
          "respondent_ACAS_no": {
            "type": "string"
          },
          "respondent_address": {
            "$ref": "#/components/schemas/Address"
          },
          "respondent_phone1": {
            "type": "string"
          },
          "respondent_phone2": {
            "type": "string"
          },
          "respondent_email": {
            "type": "string"
          },
          "respondent_contact_preference": {
            "type": "string"
          },
          "responseStruckOut": {
            "type": "string"
          },
          "responseStruckOutDate": {
            "type": "string"
          },
          "responseStruckOutChairman": {
            "type": "string"
          },
          "responseStruckOutReason": {
            "type": "string"
          },
          "responseRespondentAddress": {
            "$ref": "#/components/schemas/Address"
          },
          "responseRespondentPhone1": {
            "type": "string"
          },
          "responseRespondentPhone2": {
            "type": "string"
          },
          "responseRespondentEmail": {
            "type": "string"
          },
          "responseRespondentContactPreference": {
            "type": "string"
          },
          "responseReceived": {
            "type": "string"
          },
          "responseReceivedDate": {
            "type": "string"
          },
          "responseReceivedCount": {
            "type": "string"
          },
          "responseRespondentNameQuestion": {
            "type": "string"
          },
          "responseRespondentName": {
            "type": "string"
          },
          "responseContinue": {
            "type": "string"
          },
          "responseCounterClaim": {
            "type": "string"
          },
          "responseReference": {
            "type": "string"
          },
          "extensionRequested": {
            "type": "string"
          },
          "extensionGranted": {
            "type": "string"
          },
          "extensionDate": {
            "type": "string"
          },
          "extensionResubmitted": {
            "type": "string"
          },
          "et3Vetting": {
            "$ref": "#/components/schemas/Et3VettingType"
          },
          "et3VettingCompleted": {
            "type": "string"
          },
          "et3ResponseIsClaimantNameCorrect": {
            "type": "string"
          },
          "et3ResponseClaimantNameCorrection": {
            "type": "string"
          },
          "et3ResponseRespondentCompanyNumber": {
            "type": "string"
          },
          "et3ResponseRespondentEmployerType": {
            "type": "string"
          },
          "et3ResponseRespondentPreferredTitle": {
            "type": "string"
          },
          "et3ResponseRespondentContactName": {
            "type": "string"
          },
          "et3ResponseDXAddress": {
            "type": "string"
          },
          "et3ResponseContactReason": {
            "type": "string"
          },
          "et3ResponseHearingRepresentative": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "et3ResponseHearingRespondent": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "et3ResponseEmploymentCount": {
            "type": "string"
          },
          "et3ResponseMultipleSites": {
            "type": "string"
          },
          "et3ResponseSiteEmploymentCount": {
            "type": "string"
          },
          "et3ResponseAcasAgree": {
            "type": "string"
          },
          "et3ResponseAcasAgreeReason": {
            "type": "string"
          },
          "et3ResponseAreDatesCorrect": {
            "type": "string"
          },
          "et3ResponseEmploymentStartDate": {
            "type": "string"
          },
          "et3ResponseEmploymentEndDate": {
            "type": "string"
          },
          "et3ResponseEmploymentInformation": {
            "type": "string"
          },
          "et3ResponseContinuingEmployment": {
            "type": "string"
          },
          "et3ResponseIsJobTitleCorrect": {
            "type": "string"
          },
          "et3ResponseCorrectJobTitle": {
            "type": "string"
          },
          "et3ResponseClaimantWeeklyHours": {
            "type": "string"
          },
          "et3ResponseClaimantCorrectHours": {
            "type": "string"
          },
          "et3ResponseEarningDetailsCorrect": {
            "type": "string"
          },
          "et3ResponsePayFrequency": {
            "type": "string"
          },
          "et3ResponsePayBeforeTax": {
            "type": "string"
          },
          "et3ResponsePayTakehome": {
            "type": "string"
          },
          "et3ResponseIsNoticeCorrect": {
            "type": "string"
          },
          "et3ResponseCorrectNoticeDetails": {
            "type": "string"
          },
          "et3ResponseIsPensionCorrect": {
            "type": "string"
          },
          "et3ResponsePensionCorrectDetails": {
            "type": "string"
          },
          "et3ResponseRespondentContestClaim": {
            "type": "string"
          },
          "et3ResponseContestClaimDocument": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "et3ResponseContestClaimDetails": {
            "type": "string"
          },
          "et3ResponseEmployerClaim": {
            "type": "string"
          },
          "et3ResponseEmployerClaimDetails": {
            "type": "string"
          },
          "et3ResponseEmployerClaimDocument": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "et3ResponseRespondentSupportNeeded": {
            "type": "string"
          },
          "et3ResponseRespondentSupportDetails": {
            "type": "string"
          },
          "et3ResponseRespondentSupportDocument": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "et3Form": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "et3FormWelsh": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "personalDetailsSection": {
            "type": "string"
          },
          "employmentDetailsSection": {
            "type": "string"
          },
          "claimDetailsSection": {
            "type": "string"
          },
          "idamId": {
            "type": "string"
          },
          "et3CaseDetailsLinksStatuses": {
            "$ref": "#/components/schemas/ET3CaseDetailsLinksStatuses"
          },
          "et3HubLinksStatuses": {
            "$ref": "#/components/schemas/ET3HubLinksStatuses"
          },
          "et3ResponseLanguagePreference": {
            "type": "string"
          },
          "et3ResponseHearingRespondentNoDetails": {
            "type": "string"
          },
          "et3Status": {
            "type": "string"
          },
          "et3IsRespondentAddressCorrect": {
            "type": "string"
          },
          "contactDetailsSection": {
            "type": "string"
          },
          "employerDetailsSection": {
            "type": "string"
          },
          "conciliationAndEmployeeDetailsSection": {
            "type": "string"
          },
          "payPensionBenefitDetailsSection": {
            "type": "string"
          },
          "contestClaimSection": {
            "type": "string"
          },
          "employersContractClaimSection": {
            "type": "string"
          }
        }
      },
      "RespondentSumTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/RespondentSumType"
          }
        }
      },
      "CaseDocument": {
        "type": "object",
        "properties": {
          "uri": {
            "type": "string",
            "format": "uri"
          },
          "classification": {
            "type": "string"
          },
          "size": {
            "type": "string"
          },
          "mimeType": {
            "type": "string"
          },
          "originalDocumentName": {
            "type": "string"
          },
          "hashToken": {
            "type": "string"
          },
          "createdOn": {
            "type": "string"
          },
          "createdBy": {
            "type": "string"
          },
          "lastModifiedBy": {
            "type": "string"
          },
          "modifiedOn": {
            "type": "string"
          },
          "ttl": {
            "type": "string"
          },
          "metadata": {
            "type": "object",
            "additionalProperties": {
              "type": "string"
            }
          },
          "_links": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "additionalProperties": {
                "type": "string"
              }
            }
          }
        }
      },
      "AdditionalCaseInfoType": {
        "type": "object",
        "properties": {
          "additional_live_appeal": {
            "type": "string"
          },
          "additional_sensitive": {
            "type": "string"
          },
          "doNotPostpone": {
            "type": "string"
          },
          "digitalFile": {
            "type": "string"
          },
          "reasonableAdjustment": {
            "type": "string"
          }
        }
      },
      "AddressLabelType": {
        "type": "object",
        "properties": {
          "printLabel": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "fullAddress": {
            "type": "string"
          },
          "labelEntityName01": {
            "type": "string"
          },
          "labelEntityName02": {
            "type": "string"
          },
          "labelEntityAddress": {
            "$ref": "#/components/schemas/Address"
          },
          "labelEntityTelephone": {
            "type": "string"
          },
          "labelEntityFax": {
            "type": "string"
          },
          "labelEntityReference": {
            "type": "string"
          },
          "labelCaseReference": {
            "type": "string"
          }
        }
      },
      "AddressLabelTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/AddressLabelType"
          }
        }
      },
      "AddressLabelsAttributesType": {
        "type": "object",
        "properties": {
          "numberOfSelectedLabels": {
            "type": "string"
          },
          "numberOfCopies": {
            "type": "string"
          },
          "startingLabel": {
            "type": "string"
          },
          "showTelFax": {
            "type": "string"
          }
        }
      },
      "AddressLabelsSelectionType": {
        "type": "object",
        "properties": {
          "claimantAddressLabel": {
            "type": "string"
          },
          "claimantRepAddressLabel": {
            "type": "string"
          },
          "respondentsAddressLabel": {
            "type": "string"
          },
          "respondentsRepsAddressLabel": {
            "type": "string"
          }
        }
      },
      "AdhocReportType": {
        "type": "object",
        "properties": {
          "reportDate": {
            "type": "string"
          },
          "reportOffice": {
            "type": "string"
          },
          "receiptDate": {
            "type": "string"
          },
          "hearingDate": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "full": {
            "type": "string"
          },
          "half": {
            "type": "string"
          },
          "mins": {
            "type": "string"
          },
          "total": {
            "type": "string"
          },
          "eeMember": {
            "type": "string"
          },
          "erMember": {
            "type": "string"
          },
          "caseReference": {
            "type": "string"
          },
          "multipleRef": {
            "type": "string"
          },
          "multSub": {
            "type": "string"
          },
          "hearingNumber": {
            "type": "string"
          },
          "hearingType": {
            "type": "string"
          },
          "hearingTelConf": {
            "type": "string"
          },
          "hearingDuration": {
            "type": "string"
          },
          "hearingClerk": {
            "type": "string"
          },
          "clerk": {
            "type": "string"
          },
          "hearingSitAlone": {
            "type": "string"
          },
          "hearingJudge": {
            "type": "string"
          },
          "judgeType": {
            "type": "string"
          },
          "judgementDateSent": {
            "type": "string"
          },
          "position": {
            "type": "string"
          },
          "dateToPosition": {
            "type": "string"
          },
          "fileLocation": {
            "type": "string"
          },
          "fileLocationGlasgow": {
            "type": "string"
          },
          "fileLocationAberdeen": {
            "type": "string"
          },
          "fileLocationDundee": {
            "type": "string"
          },
          "fileLocationEdinburgh": {
            "type": "string"
          },
          "casesCompletedHearingTotal": {
            "type": "string"
          },
          "casesCompletedHearing": {
            "type": "string"
          },
          "sessionType": {
            "type": "string"
          },
          "sessionDays": {
            "type": "string"
          },
          "sessionDaysTotal": {
            "type": "string"
          },
          "sessionDaysTotalDetail": {
            "type": "string"
          },
          "completedPerSession": {
            "type": "string"
          },
          "completedPerSessionTotal": {
            "type": "string"
          },
          "ftSessionDays": {
            "type": "string"
          },
          "ftSessionDaysTotal": {
            "type": "string"
          },
          "ptSessionDays": {
            "type": "string"
          },
          "ptSessionDaysTotal": {
            "type": "string"
          },
          "ptSessionDaysPerCent": {
            "type": "string"
          },
          "otherSessionDaysTotal": {
            "type": "string"
          },
          "otherSessionDays": {
            "type": "string"
          },
          "conciliationTrack": {
            "type": "string"
          },
          "conciliationTrackNo": {
            "type": "string"
          },
          "ConNoneCasesCompletedHearing": {
            "type": "string"
          },
          "ConNoneSessionDays": {
            "type": "string"
          },
          "ConNoneCompletedPerSession": {
            "type": "string"
          },
          "ConFastCasesCompletedHearing": {
            "type": "string"
          },
          "ConFastSessionDays": {
            "type": "string"
          },
          "ConFastCompletedPerSession": {
            "type": "string"
          },
          "ConStdCasesCompletedHearing": {
            "type": "string"
          },
          "ConStdSessionDays": {
            "type": "string"
          },
          "ConStdCompletedPerSession": {
            "type": "string"
          },
          "ConOpenCasesCompletedHearing": {
            "type": "string"
          },
          "ConOpenSessionDays": {
            "type": "string"
          },
          "ConOpenCompletedPerSession": {
            "type": "string"
          },
          "totalCases": {
            "type": "string"
          },
          "Total26wk": {
            "type": "string"
          },
          "Total26wkPerCent": {
            "type": "string"
          },
          "Totalx26wk": {
            "type": "string"
          },
          "Totalx26wkPerCent": {
            "type": "string"
          },
          "Total4wk": {
            "type": "string"
          },
          "Total4wkPerCent": {
            "type": "string"
          },
          "Totalx4wk": {
            "type": "string"
          },
          "Totalx4wkPerCent": {
            "type": "string"
          },
          "respondentName": {
            "type": "string"
          },
          "actioned": {
            "type": "string"
          },
          "bfDate": {
            "type": "string"
          },
          "bfDateCleared": {
            "type": "string"
          },
          "reservedHearing": {
            "type": "string"
          },
          "hearingCM": {
            "type": "string"
          },
          "costs": {
            "type": "string"
          },
          "hearingInterloc": {
            "type": "string"
          },
          "hearingPH": {
            "type": "string"
          },
          "hearingPrelim": {
            "type": "string"
          },
          "stage": {
            "type": "string"
          },
          "hearingStage1": {
            "type": "string"
          },
          "hearingStage2": {
            "type": "string"
          },
          "hearingFull": {
            "type": "string"
          },
          "hearing": {
            "type": "string"
          },
          "remedy": {
            "type": "string"
          },
          "review": {
            "type": "string"
          },
          "reconsider": {
            "type": "string"
          },
          "subSplit": {
            "type": "string"
          },
          "leadCase": {
            "type": "string"
          },
          "et3ReceivedDate": {
            "type": "string"
          },
          "judicialMediation": {
            "type": "string"
          },
          "caseType": {
            "type": "string"
          },
          "singlesTotal": {
            "type": "string"
          },
          "multiplesTotal": {
            "type": "string"
          },
          "dateOfAcceptance": {
            "type": "string"
          },
          "respondentET3": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ReportRespondentTypeItem"
            }
          },
          "respondentET4": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ReportET4TypeItem"
            }
          },
          "listingHistory": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ReportListingsTypeItem"
            }
          },
          "ConNoneTotal": {
            "type": "string"
          },
          "ConStdTotal": {
            "type": "string"
          },
          "ConFastTotal": {
            "type": "string"
          },
          "ConOpenTotal": {
            "type": "string"
          },
          "ConNone26wkTotal": {
            "type": "string"
          },
          "ConStd26wkTotal": {
            "type": "string"
          },
          "ConFast26wkTotal": {
            "type": "string"
          },
          "ConOpen26wkTotal": {
            "type": "string"
          },
          "ConNone26wkTotalPerCent": {
            "type": "string"
          },
          "ConStd26wkTotalPerCent": {
            "type": "string"
          },
          "ConFast26wkTotalPerCent": {
            "type": "string"
          },
          "ConOpen26wkTotalPerCent": {
            "type": "string"
          },
          "xConNone26wkTotal": {
            "type": "string"
          },
          "xConStd26wkTotal": {
            "type": "string"
          },
          "xConFast26wkTotal": {
            "type": "string"
          },
          "xConOpen26wkTotal": {
            "type": "string"
          },
          "xConNone26wkTotalPerCent": {
            "type": "string"
          },
          "xConStd26wkTotalPerCent": {
            "type": "string"
          },
          "xConFast26wkTotalPerCent": {
            "type": "string"
          },
          "xConOpen26wkTotalPerCent": {
            "type": "string"
          },
          "delayedDaysForFirstHearing": {
            "type": "string"
          },
          "claimServedDay1Total": {
            "type": "string"
          },
          "claimServedDay1Percent": {
            "type": "string"
          },
          "claimServedDay2Total": {
            "type": "string"
          },
          "claimServedDay2Percent": {
            "type": "string"
          },
          "claimServedDay3Total": {
            "type": "string"
          },
          "claimServedDay3Percent": {
            "type": "string"
          },
          "claimServedDay4Total": {
            "type": "string"
          },
          "claimServedDay4Percent": {
            "type": "string"
          },
          "claimServedDay5Total": {
            "type": "string"
          },
          "claimServedDay5Percent": {
            "type": "string"
          },
          "claimServed6PlusDaysTotal": {
            "type": "string"
          },
          "claimServed6PlusDaysPercent": {
            "type": "string"
          },
          "claimServedTotal": {
            "type": "string"
          },
          "claimServedItems": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ClaimServedTypeItem"
            }
          },
          "manuallyCreatedTotalCases": {
            "type": "string"
          },
          "et1OnlineTotalCases": {
            "type": "string"
          },
          "eccTotalCases": {
            "type": "string"
          },
          "migratedTotalCases": {
            "type": "string"
          },
          "manuallyCreatedTotalCasesPercent": {
            "type": "string"
          },
          "et1OnlineTotalCasesPercent": {
            "type": "string"
          },
          "eccTotalCasesPercent": {
            "type": "string"
          },
          "migratedTotalCasesPercent": {
            "type": "string"
          }
        }
      },
      "AdhocReportTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/AdhocReportType"
          }
        }
      },
      "BFActionType": {
        "type": "object",
        "properties": {
          "action": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "cwActions": {
            "type": "string"
          },
          "dateEntered": {
            "type": "string"
          },
          "imported": {
            "type": "string"
          },
          "letters": {
            "type": "string"
          },
          "allActions": {
            "type": "string"
          },
          "bfDate": {
            "type": "string"
          },
          "cleared": {
            "type": "string"
          },
          "notes": {
            "type": "string"
          }
        }
      },
      "BFActionTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/BFActionType"
          }
        }
      },
      "BFDateType": {
        "type": "object",
        "properties": {
          "caseReference": {
            "type": "string"
          },
          "broughtForwardAction": {
            "type": "string"
          },
          "broughtForwardDate": {
            "type": "string"
          },
          "broughtForwardDateCleared": {
            "type": "string"
          },
          "broughtForwardEnteredDate": {
            "type": "string"
          },
          "broughtForwardDateReason": {
            "type": "string"
          }
        }
      },
      "BFDateTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/BFDateType"
          }
        }
      },
      "Bundle": {
        "type": "object",
        "properties": {
          "value": {
            "$ref": "#/components/schemas/BundleDetails"
          }
        }
      },
      "BundleDetails": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "eligibleForStitching": {
            "type": "string"
          },
          "eligibleForCloning": {
            "type": "string"
          },
          "documents": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BundleDocument"
            }
          },
          "folders": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BundleFolder"
            }
          },
          "stitchStatus": {
            "type": "string"
          },
          "stitchedDocument": {
            "$ref": "#/components/schemas/DocumentLink"
          },
          "hasCoversheets": {
            "type": "string"
          },
          "hasTableOfContents": {
            "type": "string"
          },
          "hasFolderCoversheets": {
            "type": "string"
          },
          "stitchingFailureMessage": {
            "type": "string"
          },
          "fileName": {
            "type": "string"
          },
          "paginationStyle": {
            "type": "string"
          },
          "coverpageTemplate": {
            "type": "string"
          },
          "pageNumberFormat": {
            "type": "string"
          }
        }
      },
      "BundleDocument": {
        "type": "object",
        "properties": {
          "value": {
            "$ref": "#/components/schemas/BundleDocumentDetails"
          }
        }
      },
      "BundleDocumentDetails": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "sortIndex": {
            "type": "integer",
            "format": "int32"
          },
          "sourceDocument": {
            "$ref": "#/components/schemas/DocumentLink"
          }
        }
      },
      "BundleFolder": {
        "type": "object",
        "properties": {
          "value": {
            "$ref": "#/components/schemas/BundleFolderDetails"
          }
        }
      },
      "BundleFolderDetails": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "documents": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BundleDocument"
            }
          },
          "folders": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BundleSubfolder"
            }
          },
          "sortIndex": {
            "type": "integer",
            "format": "int32"
          }
        }
      },
      "BundleSubfolder": {
        "type": "object",
        "properties": {
          "value": {
            "$ref": "#/components/schemas/BundleSubfolderDetails"
          }
        }
      },
      "BundleSubfolderDetails": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "documents": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BundleDocument"
            }
          }
        }
      },
      "CaseCategory": {
        "required": [
          "categoryType",
          "categoryValue"
        ],
        "type": "object",
        "properties": {
          "categoryType": {
            "type": "string"
          },
          "categoryValue": {
            "maxLength": 70,
            "minLength": 0,
            "type": "string"
          },
          "categoryParent": {
            "maxLength": 70,
            "minLength": 0,
            "type": "string"
          }
        }
      },
      "CaseData": {
        "type": "object",
        "properties": {
          "documentCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "claimantDocumentCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "legalrepDocumentCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "nextListedDate": {
            "type": "string"
          },
          "respondentTse": {
            "$ref": "#/components/schemas/RespondentTse"
          },
          "caseFlags": {
            "$ref": "#/components/schemas/CaseFlagsType"
          },
          "claimantFlags": {
            "$ref": "#/components/schemas/CaseFlagsType"
          },
          "respondentFlags": {
            "$ref": "#/components/schemas/CaseFlagsType"
          },
          "waRule21ReferralSent": {
            "type": "string"
          },
          "referralCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ReferralTypeItem"
            }
          },
          "referralHearingDetails": {
            "type": "string"
          },
          "selectReferral": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "referCaseTo": {
            "type": "string"
          },
          "referentEmail": {
            "type": "string"
          },
          "isUrgent": {
            "type": "string"
          },
          "referralSubject": {
            "type": "string"
          },
          "referralSubjectSpecify": {
            "type": "string"
          },
          "referralDetails": {
            "type": "string"
          },
          "referralDocument": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "referralInstruction": {
            "type": "string"
          },
          "referredBy": {
            "type": "string"
          },
          "referralDate": {
            "type": "string"
          },
          "updateReferralNumber": {
            "type": "string"
          },
          "updateReferCaseTo": {
            "type": "string"
          },
          "updateReferentEmail": {
            "type": "string"
          },
          "updateIsUrgent": {
            "type": "string"
          },
          "updateReferralSubject": {
            "type": "string"
          },
          "updateReferralSubjectSpecify": {
            "type": "string"
          },
          "updateReferralDetails": {
            "type": "string"
          },
          "updateReferralDocument": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "updateReferralInstruction": {
            "type": "string"
          },
          "hearingAndReferralDetails": {
            "type": "string"
          },
          "directionTo": {
            "type": "string"
          },
          "replyToEmailAddress": {
            "type": "string"
          },
          "isUrgentReply": {
            "type": "string"
          },
          "directionDetails": {
            "type": "string"
          },
          "replyDocument": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "replyGeneralNotes": {
            "type": "string"
          },
          "replyTo": {
            "type": "string"
          },
          "replyDetails": {
            "type": "string"
          },
          "isJudge": {
            "type": "string"
          },
          "closeReferralHearingDetails": {
            "type": "string"
          },
          "confirmCloseReferral": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "closeReferralGeneralNotes": {
            "type": "string"
          },
          "digitalCaseFile": {
            "$ref": "#/components/schemas/DigitalCaseFileType"
          },
          "bundleConfiguration": {
            "type": "string"
          },
          "caseBundles": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bundle"
            }
          },
          "caseManagementLocation": {
            "$ref": "#/components/schemas/CaseLocation"
          },
          "managingOffice": {
            "type": "string"
          },
          "typeOfClaim": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "typesOfClaim": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "caseType": {
            "type": "string"
          },
          "caseSource": {
            "type": "string"
          },
          "claimantRepresentedQuestion": {
            "type": "string"
          },
          "claimantWorkAddressQuestion": {
            "type": "string"
          },
          "ClaimantPcqId": {
            "type": "string"
          },
          "jurCodesCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/JurCodesTypeItem"
            }
          },
          "claimantIndType": {
            "$ref": "#/components/schemas/ClaimantIndType"
          },
          "claimantType": {
            "$ref": "#/components/schemas/ClaimantType"
          },
          "representativeClaimantType": {
            "$ref": "#/components/schemas/RepresentedTypeC"
          },
          "claimantOtherType": {
            "$ref": "#/components/schemas/ClaimantOtherType"
          },
          "respondentCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RespondentSumTypeItem"
            }
          },
          "claimantWorkAddress": {
            "$ref": "#/components/schemas/ClaimantWorkAddressType"
          },
          "caseNotes": {
            "type": "string"
          },
          "additionalCaseInfo": {
            "$ref": "#/components/schemas/AdditionalCaseInfoType"
          },
          "newEmploymentType": {
            "$ref": "#/components/schemas/NewEmploymentType"
          },
          "claimantRequests": {
            "$ref": "#/components/schemas/ClaimantRequestType"
          },
          "claimantHearingPreference": {
            "$ref": "#/components/schemas/ClaimantHearingPreference"
          },
          "claimantTaskListChecks": {
            "$ref": "#/components/schemas/TaskListCheckType"
          },
          "receiptDate": {
            "type": "string"
          },
          "triageQuestions": {
            "$ref": "#/components/schemas/TriageQuestions"
          },
          "et1OnlineSubmission": {
            "type": "string"
          },
          "hubLinksStatuses": {
            "$ref": "#/components/schemas/HubLinksStatuses"
          },
          "TTL": {
            "$ref": "#/components/schemas/TTL"
          },
          "tribunalCorrespondenceAddress": {
            "$ref": "#/components/schemas/Address"
          },
          "tribunalCorrespondenceTelephone": {
            "type": "string"
          },
          "tribunalCorrespondenceFax": {
            "type": "string"
          },
          "tribunalCorrespondenceDX": {
            "type": "string"
          },
          "tribunalCorrespondenceEmail": {
            "type": "string"
          },
          "ethosCaseReference": {
            "type": "string"
          },
          "multipleName": {
            "type": "string"
          },
          "multipleReference": {
            "type": "string"
          },
          "multipleReferenceLinkMarkUp": {
            "type": "string"
          },
          "parentMultipleCaseId": {
            "type": "string"
          },
          "subMultipleName": {
            "type": "string"
          },
          "leadClaimant": {
            "type": "string"
          },
          "multipleFlag": {
            "type": "string"
          },
          "claimant_TypeOfClaimant": {
            "type": "string"
          },
          "claimant_Company": {
            "type": "string"
          },
          "preAcceptCase": {
            "$ref": "#/components/schemas/CasePreAcceptType"
          },
          "claimServedDate": {
            "type": "string"
          },
          "et3DueDate": {
            "type": "string"
          },
          "feeGroupReference": {
            "type": "string"
          },
          "claimantWorkAddressQRespondent": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "repCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RepresentedTypeRItem"
            }
          },
          "positionType": {
            "type": "string"
          },
          "dateToPosition": {
            "type": "string"
          },
          "currentPosition": {
            "type": "string"
          },
          "fileLocation": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "fileLocationGlasgow": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "fileLocationAberdeen": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "fileLocationDundee": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "fileLocationEdinburgh": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "hearingCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/HearingTypeItem"
            }
          },
          "hearingDetailsCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/HearingDetailTypeItem"
            }
          },
          "depositType": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DepositTypeItem"
            }
          },
          "judgementCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/JudgementTypeItem"
            }
          },
          "bfActions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BFActionTypeItem"
            }
          },
          "clerkResponsible": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "userLocation": {
            "type": "string"
          },
          "addDocumentCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "correspondenceScotType": {
            "$ref": "#/components/schemas/CorrespondenceScotType"
          },
          "correspondenceType": {
            "$ref": "#/components/schemas/CorrespondenceType"
          },
          "addressLabelsSelectionType": {
            "$ref": "#/components/schemas/AddressLabelsSelectionType"
          },
          "addressLabelCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AddressLabelTypeItem"
            }
          },
          "addressLabelsAttributesType": {
            "$ref": "#/components/schemas/AddressLabelsAttributesType"
          },
          "allocatedOffice": {
            "type": "string"
          },
          "conciliationTrack": {
            "type": "string"
          },
          "counterClaim": {
            "type": "string"
          },
          "eccCases": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/EccCounterClaimTypeItem"
            }
          },
          "restrictedReporting": {
            "$ref": "#/components/schemas/RestrictedReportingType"
          },
          "printHearingDetails": {
            "$ref": "#/components/schemas/ListingData"
          },
          "printHearingCollection": {
            "$ref": "#/components/schemas/ListingData"
          },
          "targetHearingDate": {
            "type": "string"
          },
          "claimant": {
            "type": "string"
          },
          "claimantId": {
            "type": "string"
          },
          "respondent": {
            "type": "string"
          },
          "EQP": {
            "type": "string"
          },
          "flag1": {
            "type": "string"
          },
          "flag2": {
            "type": "string"
          },
          "docMarkUp": {
            "type": "string"
          },
          "caseRefNumberCount": {
            "type": "string"
          },
          "startCaseRefNumber": {
            "type": "string"
          },
          "multipleRefNumber": {
            "type": "string"
          },
          "caseRefECC": {
            "type": "string"
          },
          "respondentECC": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "ccdID": {
            "type": "string"
          },
          "flagsImageFileName": {
            "type": "string"
          },
          "flagsImageAltText": {
            "type": "string"
          },
          "hearingNumbers": {
            "type": "string"
          },
          "hearingTypes": {
            "type": "string"
          },
          "hearingPublicPrivate": {
            "type": "string"
          },
          "hearingVenue": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "hearingEstLengthNum": {
            "type": "string"
          },
          "hearingEstLengthNumType": {
            "type": "string"
          },
          "hearingSitAlone": {
            "type": "string"
          },
          "Hearing_stage": {
            "type": "string"
          },
          "listedDate": {
            "type": "string"
          },
          "Hearing_notes": {
            "type": "string"
          },
          "hearingSelection": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "hearingActions": {
            "type": "string"
          },
          "hearingERMember": {
            "type": "string"
          },
          "hearingEEMember": {
            "type": "string"
          },
          "hearingDatesRequireAmending": {
            "type": "string"
          },
          "hearingDateSelection": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "hearingDateActions": {
            "type": "string"
          },
          "hearingStatus": {
            "type": "string"
          },
          "Postponed_by": {
            "type": "string"
          },
          "hearingRoom": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "hearingClerk": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "hearingJudge": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "hearingCaseDisposed": {
            "type": "string"
          },
          "Hearing_part_heard": {
            "type": "string"
          },
          "Hearing_reserved_judgement": {
            "type": "string"
          },
          "attendee_claimant": {
            "type": "string"
          },
          "attendee_non_attendees": {
            "type": "string"
          },
          "attendee_resp_no_rep": {
            "type": "string"
          },
          "attendee_resp_&_rep": {
            "type": "string"
          },
          "attendee_rep_only": {
            "type": "string"
          },
          "companyPremises": {
            "$ref": "#/components/schemas/CompanyPremisesType"
          },
          "officeCT": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "reasonForCT": {
            "type": "string"
          },
          "relatedCaseCT": {
            "type": "string"
          },
          "positionTypeCT": {
            "type": "string"
          },
          "linkedCaseCT": {
            "type": "string"
          },
          "transferredCaseLink": {
            "type": "string"
          },
          "transferredCaseLinkSourceCaseId": {
            "type": "string"
          },
          "transferredCaseLinkSourceCaseTypeId": {
            "type": "string"
          },
          "ecmOfficeCT": {
            "type": "string"
          },
          "assignOffice": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "retrospectiveTTL": {
            "type": "string"
          },
          "stateAPI": {
            "type": "string"
          },
          "allocateHearingHearing": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "allocateHearingManagingOffice": {
            "type": "string"
          },
          "allocateHearingVenue": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "allocateHearingRoom": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "allocateHearingClerk": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "allocateHearingSitAlone": {
            "type": "string"
          },
          "allocateHearingJudge": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "allocateHearingEmployerMember": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "allocateHearingEmployeeMember": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "allocateHearingPostponedBy": {
            "type": "string"
          },
          "allocateHearingStatus": {
            "type": "string"
          },
          "allocateHearingReadingDeliberation": {
            "type": "string"
          },
          "hearingDetailsHearing": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "uploadHearingNotesDocument": {
            "$ref": "#/components/schemas/Document"
          },
          "doesHearingNotesDocExist": {
            "type": "string"
          },
          "removeHearingNotesDocument": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "hearingDetailsStatus": {
            "type": "string"
          },
          "hearingDetailsPostponedBy": {
            "type": "string"
          },
          "hearingDetailsCaseDisposed": {
            "type": "string"
          },
          "hearingDetailsPartHeard": {
            "type": "string"
          },
          "hearingDetailsReservedJudgment": {
            "type": "string"
          },
          "hearingDetailsAttendeeClaimant": {
            "type": "string"
          },
          "hearingDetailsAttendeeNonAttendees": {
            "type": "string"
          },
          "hearingDetailsAttendeeRespNoRep": {
            "type": "string"
          },
          "hearingDetailsAttendeeRespAndRep": {
            "type": "string"
          },
          "hearingDetailsAttendeeRepOnly": {
            "type": "string"
          },
          "hearingDetailsTimingStart": {
            "type": "string"
          },
          "hearingDetailsTimingBreak": {
            "type": "string"
          },
          "hearingDetailsTimingResume": {
            "type": "string"
          },
          "hearingDetailsTimingFinish": {
            "type": "string"
          },
          "hearingDetailsTimingDuration": {
            "type": "string"
          },
          "hearingDetailsHearingNotes2": {
            "type": "string"
          },
          "trackType": {
            "type": "string"
          },
          "et1VettingDocument": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "et1VettingBeforeYouStart": {
            "type": "string"
          },
          "et1VettingClaimantDetailsMarkUp": {
            "type": "string"
          },
          "et1VettingRespondentDetailsMarkUp": {
            "type": "string"
          },
          "et1VettingCanServeClaimYesOrNo": {
            "type": "string"
          },
          "et1VettingCanServeClaimNoReason": {
            "type": "string"
          },
          "et1VettingCanServeClaimGeneralNote": {
            "type": "string"
          },
          "et1VettingRespondentAcasDetails1": {
            "type": "string"
          },
          "et1VettingRespondentAcasDetails2": {
            "type": "string"
          },
          "et1VettingRespondentAcasDetails3": {
            "type": "string"
          },
          "et1VettingRespondentAcasDetails4": {
            "type": "string"
          },
          "et1VettingRespondentAcasDetails5": {
            "type": "string"
          },
          "et1VettingRespondentAcasDetails6": {
            "type": "string"
          },
          "et1VettingAcasCertIsYesOrNo1": {
            "type": "string"
          },
          "et1VettingAcasCertExemptYesOrNo1": {
            "type": "string"
          },
          "et1VettingAcasCertIsYesOrNo2": {
            "type": "string"
          },
          "et1VettingAcasCertExemptYesOrNo2": {
            "type": "string"
          },
          "et1VettingAcasCertIsYesOrNo3": {
            "type": "string"
          },
          "et1VettingAcasCertExemptYesOrNo3": {
            "type": "string"
          },
          "et1VettingRespondentAcasDetailsLabel4": {
            "type": "string"
          },
          "et1VettingAcasCertIsYesOrNo4": {
            "type": "string"
          },
          "et1VettingAcasCertExemptYesOrNo4": {
            "type": "string"
          },
          "et1VettingAcasCertIsYesOrNo5": {
            "type": "string"
          },
          "et1VettingAcasCertExemptYesOrNo5": {
            "type": "string"
          },
          "et1VettingAcasCertIsYesOrNo6": {
            "type": "string"
          },
          "et1VettingAcasCertExemptYesOrNo6": {
            "type": "string"
          },
          "et1VettingAcasCertGeneralNote": {
            "type": "string"
          },
          "et1VettingCompletedBy": {
            "type": "string"
          },
          "et1DateCompleted": {
            "type": "string"
          },
          "icCompletedBy": {
            "type": "string"
          },
          "icDateCompleted": {
            "type": "string"
          },
          "substantiveDefectsList": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "rule121aTextArea": {
            "type": "string"
          },
          "rule121bTextArea": {
            "type": "string"
          },
          "rule121cTextArea": {
            "type": "string"
          },
          "rule121dTextArea": {
            "type": "string"
          },
          "rule121daTextArea": {
            "type": "string"
          },
          "rule121eTextArea": {
            "type": "string"
          },
          "rule121fTextArea": {
            "type": "string"
          },
          "et1SubstantiveDefectsGeneralNotes": {
            "type": "string"
          },
          "areTheseCodesCorrect": {
            "type": "string"
          },
          "codesCorrectGiveDetails": {
            "type": "string"
          },
          "et1JurisdictionCodeGeneralNotes": {
            "type": "string"
          },
          "existingJurisdictionCodes": {
            "type": "string"
          },
          "vettingJurisdictionCodeCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/VettingJurCodesTypeItem"
            }
          },
          "isTrackAllocationCorrect": {
            "type": "string"
          },
          "suggestAnotherTrack": {
            "type": "string"
          },
          "whyChangeTrackAllocation": {
            "type": "string"
          },
          "trackAllocationGeneralNotes": {
            "type": "string"
          },
          "isLocationCorrect": {
            "type": "string"
          },
          "whyChangeOffice": {
            "type": "string"
          },
          "et1LocationGeneralNotes": {
            "type": "string"
          },
          "trackAllocation": {
            "type": "string"
          },
          "tribunalAndOfficeLocation": {
            "type": "string"
          },
          "regionalOffice": {
            "type": "string"
          },
          "regionalOfficeList": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "et1AddressDetails": {
            "type": "string"
          },
          "et1TribunalRegion": {
            "type": "string"
          },
          "et1HearingVenues": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "et1SuggestHearingVenue": {
            "type": "string"
          },
          "et1HearingVenueGeneralNotes": {
            "type": "string"
          },
          "et1GovOrMajorQuestion": {
            "type": "string"
          },
          "et1ReasonableAdjustmentsQuestion": {
            "type": "string"
          },
          "et1ReasonableAdjustmentsTextArea": {
            "type": "string"
          },
          "et1VideoHearingQuestion": {
            "type": "string"
          },
          "et1VideoHearingTextArea": {
            "type": "string"
          },
          "et1FurtherQuestionsGeneralNotes": {
            "type": "string"
          },
          "referralToJudgeOrLOList": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "aClaimOfInterimReliefTextArea": {
            "type": "string"
          },
          "aStatutoryAppealTextArea": {
            "type": "string"
          },
          "anAllegationOfCommissionOfSexualOffenceTextArea": {
            "type": "string"
          },
          "insolvencyTextArea": {
            "type": "string"
          },
          "jurisdictionsUnclearTextArea": {
            "type": "string"
          },
          "lengthOfServiceTextArea": {
            "type": "string"
          },
          "potentiallyLinkedCasesInTheEcmTextArea": {
            "type": "string"
          },
          "rule50IssuesTextArea": {
            "type": "string"
          },
          "anotherReasonForJudicialReferralTextArea": {
            "type": "string"
          },
          "et1JudgeReferralGeneralNotes": {
            "type": "string"
          },
          "referralToREJOrVPList": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "vexatiousLitigantOrderTextArea": {
            "type": "string"
          },
          "aNationalSecurityIssueTextArea": {
            "type": "string"
          },
          "nationalMultipleOrPresidentialOrderTextArea": {
            "type": "string"
          },
          "transferToOtherRegionTextArea": {
            "type": "string"
          },
          "serviceAbroadTextArea": {
            "type": "string"
          },
          "aSensitiveIssueTextArea": {
            "type": "string"
          },
          "anyPotentialConflictTextArea": {
            "type": "string"
          },
          "anotherReasonREJOrVPTextArea": {
            "type": "string"
          },
          "et1REJOrVPReferralGeneralNotes": {
            "type": "string"
          },
          "otherReferralList": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimOutOfTimeTextArea": {
            "type": "string"
          },
          "multipleClaimTextArea": {
            "type": "string"
          },
          "employmentStatusIssuesTextArea": {
            "type": "string"
          },
          "pidJurisdictionRegulatorTextArea": {
            "type": "string"
          },
          "videoHearingPreferenceTextArea": {
            "type": "string"
          },
          "rule50IssuesForOtherReferralTextArea": {
            "type": "string"
          },
          "anotherReasonForOtherReferralTextArea": {
            "type": "string"
          },
          "et1OtherReferralGeneralNotes": {
            "type": "string"
          },
          "et1VettingAdditionalInformationTextArea": {
            "type": "string"
          },
          "servingDocumentCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "otherTypeDocumentName": {
            "type": "string"
          },
          "servingDocumentRecipient": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimantAndRespondentAddresses": {
            "type": "string"
          },
          "emailLinkToAcas": {
            "type": "string"
          },
          "et3ChooseRespondent": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "et3Date": {
            "type": "string"
          },
          "et3IsThereAnEt3Response": {
            "type": "string"
          },
          "et3NoEt3Response": {
            "type": "string"
          },
          "et3GeneralNotes": {
            "type": "string"
          },
          "et3IsThereACompaniesHouseSearchDocument": {
            "type": "string"
          },
          "et3CompanyHouseDocument": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "et3GeneralNotesCompanyHouse": {
            "type": "string"
          },
          "et3IsThereAnIndividualSearchDocument": {
            "type": "string"
          },
          "et3IndividualInsolvencyDocument": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "et3GeneralNotesIndividualInsolvency": {
            "type": "string"
          },
          "et3LegalIssue": {
            "type": "string"
          },
          "et3LegalIssueGiveDetails": {
            "type": "string"
          },
          "et3GeneralNotesLegalEntity": {
            "type": "string"
          },
          "et3ResponseInTime": {
            "type": "string"
          },
          "et3ResponseInTimeDetails": {
            "type": "string"
          },
          "et3NameAddressRespondent": {
            "type": "string"
          },
          "et3DoWeHaveRespondentsName": {
            "type": "string"
          },
          "et3GeneralNotesRespondentName": {
            "type": "string"
          },
          "et3DoesRespondentsNameMatch": {
            "type": "string"
          },
          "et3RespondentNameMismatchDetails": {
            "type": "string"
          },
          "et3GeneralNotesRespondentNameMatch": {
            "type": "string"
          },
          "et3DoWeHaveRespondentsAddress": {
            "type": "string"
          },
          "et3DoesRespondentsAddressMatch": {
            "type": "string"
          },
          "et3RespondentAddressMismatchDetails": {
            "type": "string"
          },
          "et3GeneralNotesRespondentAddress": {
            "type": "string"
          },
          "et3GeneralNotesAddressMatch": {
            "type": "string"
          },
          "et3HearingDetails": {
            "type": "string"
          },
          "et3IsCaseListedForHearing": {
            "type": "string"
          },
          "et3IsCaseListedForHearingDetails": {
            "type": "string"
          },
          "et3GeneralNotesCaseListed": {
            "type": "string"
          },
          "et3TribunalLocation": {
            "type": "string"
          },
          "et3IsThisLocationCorrect": {
            "type": "string"
          },
          "et3GeneralNotesTransferApplication": {
            "type": "string"
          },
          "et3RegionalOffice": {
            "type": "string"
          },
          "et3WhyWeShouldChangeTheOffice": {
            "type": "string"
          },
          "et3ContestClaim": {
            "type": "string"
          },
          "et3ContestClaimGiveDetails": {
            "type": "string"
          },
          "et3GeneralNotesContestClaim": {
            "type": "string"
          },
          "et3ContractClaimSection7": {
            "type": "string"
          },
          "et3ContractClaimSection7Details": {
            "type": "string"
          },
          "et3GeneralNotesContractClaimSection7": {
            "type": "string"
          },
          "et3Rule26": {
            "type": "string"
          },
          "et3Rule26Details": {
            "type": "string"
          },
          "et3SuggestedIssues": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "et3SuggestedIssuesStrikeOut": {
            "type": "string"
          },
          "et3SuggestedIssueInterpreters": {
            "type": "string"
          },
          "et3SuggestedIssueJurisdictional": {
            "type": "string"
          },
          "et3SuggestedIssueAdjustments": {
            "type": "string"
          },
          "et3SuggestedIssueRule50": {
            "type": "string"
          },
          "et3SuggestedIssueTimePoints": {
            "type": "string"
          },
          "et3GeneralNotesRule26": {
            "type": "string"
          },
          "et3AdditionalInformation": {
            "type": "string"
          },
          "etInitialConsiderationDocument": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "etInitialConsiderationRespondent": {
            "type": "string"
          },
          "icRespondentHearingPanelPreference": {
            "type": "string"
          },
          "icRespondentHearingPanelPreferenceReason": {
            "type": "string"
          },
          "etInitialConsiderationHearing": {
            "type": "string"
          },
          "etIcHearingPanelPreference": {
            "type": "string"
          },
          "etInitialConsiderationJurisdictionCodes": {
            "type": "string"
          },
          "icReceiptET3FormIssues": {
            "type": "string"
          },
          "icRespondentsNameIdentityIssues": {
            "type": "string"
          },
          "icJurisdictionCodeIssues": {
            "type": "string"
          },
          "icApplicationIssues": {
            "type": "string"
          },
          "icEmployersContractClaimIssues": {
            "type": "string"
          },
          "icClaimProspectIssues": {
            "type": "string"
          },
          "icListingIssues": {
            "type": "string"
          },
          "icListingPreliminaryHearing": {
            "type": "string"
          },
          "icDdaDisabilityIssues": {
            "type": "string"
          },
          "icOrderForFurtherInformation": {
            "type": "string"
          },
          "icOtherIssuesOrFinalOrders": {
            "type": "string"
          },
          "etICJuridictionCodesInvalid": {
            "type": "string"
          },
          "etICInvalidDetails": {
            "type": "string"
          },
          "etICCanProceed": {
            "type": "string"
          },
          "etICHearingAlreadyListed": {
            "type": "string"
          },
          "etICHearingNotListedList": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICHearingNotListedSeekComments": {
            "$ref": "#/components/schemas/EtICSeekComments"
          },
          "etICHearingNotListedListForPrelimHearing": {
            "$ref": "#/components/schemas/EtICListForPreliminaryHearing"
          },
          "etICHearingNotListedListForFinalHearing": {
            "$ref": "#/components/schemas/EtICListForFinalHearing"
          },
          "etICHearingNotListedUDLHearing": {
            "$ref": "#/components/schemas/EtIcudlHearing"
          },
          "etICHearingNotListedAnyOtherDirections": {
            "type": "string"
          },
          "etICHearingNotListedListUpdated": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICHearingNotListedListForPrelimHearingUpdated": {
            "$ref": "#/components/schemas/EtICListForPreliminaryHearingUpdated"
          },
          "etICHearingNotListedListForFinalHearingUpdated": {
            "$ref": "#/components/schemas/EtICListForFinalHearingUpdated"
          },
          "etICHearingNotListedDoNotListHearingDirections": {
            "type": "string"
          },
          "etICHearingNotListedOtherDirections": {
            "type": "string"
          },
          "etICHearingListedAnswers": {
            "$ref": "#/components/schemas/EtICHearingListedAnswers"
          },
          "etICHearingListed": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICExtendDurationGiveDetails": {
            "type": "string"
          },
          "etICOtherGiveDetails": {
            "type": "string"
          },
          "etICHearingAnyOtherDirections": {
            "type": "string"
          },
          "etICPostponeGiveDetails": {
            "type": "string"
          },
          "etICConvertPreliminaryGiveDetails": {
            "type": "string"
          },
          "etICConvertF2fGiveDetails": {
            "type": "string"
          },
          "etICFurtherInformation": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICFurtherInfoAnswers": {
            "$ref": "#/components/schemas/EtICFurtherInfoAnswers"
          },
          "etICFurtherInformationHearingAnyOtherDirections": {
            "type": "string"
          },
          "etICFurtherInformationGiveDetails": {
            "type": "string"
          },
          "etICFurtherInformationTimeToComply": {
            "type": "string"
          },
          "etInitialConsiderationRule27": {
            "$ref": "#/components/schemas/EtInitialConsiderationRule27"
          },
          "etInitialConsiderationRule28": {
            "$ref": "#/components/schemas/EtInitialConsiderationRule28"
          },
          "icDocumentCollection1": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "icDocumentCollection2": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "icDocumentCollection3": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "icAllDocumentCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "et3ResponseShowInset": {
            "type": "string"
          },
          "et3ResponseClaimantName": {
            "type": "string"
          },
          "et3ResponseIsClaimantNameCorrect": {
            "type": "string"
          },
          "et3ResponseClaimantNameCorrection": {
            "type": "string"
          },
          "et3ResponseNameShowInset": {
            "type": "string"
          },
          "et3ResponseRespondentLegalName": {
            "type": "string"
          },
          "et3ResponseRespondentCompanyNumber": {
            "type": "string"
          },
          "et3ResponseRespondentEmployerType": {
            "type": "string"
          },
          "et3ResponseRespondentPreferredTitle": {
            "type": "string"
          },
          "et3ResponseRespondentContactName": {
            "type": "string"
          },
          "et3RespondentAddress": {
            "$ref": "#/components/schemas/Address"
          },
          "et3ResponseDXAddress": {
            "type": "string"
          },
          "et3ResponsePhone": {
            "type": "string"
          },
          "et3ResponseReference": {
            "type": "string"
          },
          "et3ResponseContactPreference": {
            "type": "string"
          },
          "et3ResponseContactReason": {
            "type": "string"
          },
          "et3ResponseHearingRepresentative": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "et3ResponseHearingRespondent": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "et3ResponseEmploymentCount": {
            "type": "string"
          },
          "et3ResponseMultipleSites": {
            "type": "string"
          },
          "et3ResponseSiteEmploymentCount": {
            "type": "string"
          },
          "et3ResponseAcasAgree": {
            "type": "string"
          },
          "et3ResponseAcasAgreeReason": {
            "type": "string"
          },
          "et3ResponseAreDatesCorrect": {
            "type": "string"
          },
          "et3ResponseEmploymentStartDate": {
            "type": "string"
          },
          "et3ResponseEmploymentEndDate": {
            "type": "string"
          },
          "et3ResponseEmploymentInformation": {
            "type": "string"
          },
          "et3ResponseContinuingEmployment": {
            "type": "string"
          },
          "et3ResponseIsJobTitleCorrect": {
            "type": "string"
          },
          "et3ResponseCorrectJobTitle": {
            "type": "string"
          },
          "et3ResponseClaimantWeeklyHours": {
            "type": "string"
          },
          "et3ResponseClaimantCorrectHours": {
            "type": "string"
          },
          "et3ResponseEarningDetailsCorrect": {
            "type": "string"
          },
          "et3ResponsePayFrequency": {
            "type": "string"
          },
          "et3ResponsePayBeforeTax": {
            "type": "string"
          },
          "et3ResponsePayTakehome": {
            "type": "string"
          },
          "et3ResponseIsNoticeCorrect": {
            "type": "string"
          },
          "et3ResponseCorrectNoticeDetails": {
            "type": "string"
          },
          "et3ResponseIsPensionCorrect": {
            "type": "string"
          },
          "et3ResponsePensionCorrectDetails": {
            "type": "string"
          },
          "et3ResponseRespondentContestClaim": {
            "type": "string"
          },
          "et3ResponseContestClaimDocument": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "et3ResponseContestClaimDetails": {
            "type": "string"
          },
          "et3ResponseEmployerClaim": {
            "type": "string"
          },
          "et3ResponseEmployerClaimDetails": {
            "type": "string"
          },
          "et3ResponseEmployerClaimDocument": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "et3ResponseRespondentSupportNeeded": {
            "type": "string"
          },
          "et3ResponseRespondentSupportDetails": {
            "type": "string"
          },
          "et3ResponseRespondentSupportDocument": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "et3NotificationDocCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "et3OtherTypeDocumentName": {
            "type": "string"
          },
          "et3NotificationDocRecipient": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "et3ClaimantAndRespondentAddresses": {
            "type": "string"
          },
          "et3EmailLinkToAcas": {
            "type": "string"
          },
          "replyToReferralDcfLink": {
            "type": "string"
          },
          "caseRejectedEmailSent": {
            "type": "string"
          },
          "respondentOrganisationPolicy0": {
            "$ref": "#/components/schemas/OrganisationPolicy"
          },
          "respondentOrganisationPolicy1": {
            "$ref": "#/components/schemas/OrganisationPolicy"
          },
          "respondentOrganisationPolicy2": {
            "$ref": "#/components/schemas/OrganisationPolicy"
          },
          "respondentOrganisationPolicy3": {
            "$ref": "#/components/schemas/OrganisationPolicy"
          },
          "respondentOrganisationPolicy4": {
            "$ref": "#/components/schemas/OrganisationPolicy"
          },
          "respondentOrganisationPolicy5": {
            "$ref": "#/components/schemas/OrganisationPolicy"
          },
          "respondentOrganisationPolicy6": {
            "$ref": "#/components/schemas/OrganisationPolicy"
          },
          "respondentOrganisationPolicy7": {
            "$ref": "#/components/schemas/OrganisationPolicy"
          },
          "respondentOrganisationPolicy8": {
            "$ref": "#/components/schemas/OrganisationPolicy"
          },
          "respondentOrganisationPolicy9": {
            "$ref": "#/components/schemas/OrganisationPolicy"
          },
          "suggestedHearingVenues": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "listedDateInPastWarning": {
            "type": "string"
          },
          "noticeOfChangeAnswers0": {
            "$ref": "#/components/schemas/NoticeOfChangeAnswers"
          },
          "noticeOfChangeAnswers1": {
            "$ref": "#/components/schemas/NoticeOfChangeAnswers"
          },
          "noticeOfChangeAnswers2": {
            "$ref": "#/components/schemas/NoticeOfChangeAnswers"
          },
          "noticeOfChangeAnswers3": {
            "$ref": "#/components/schemas/NoticeOfChangeAnswers"
          },
          "noticeOfChangeAnswers4": {
            "$ref": "#/components/schemas/NoticeOfChangeAnswers"
          },
          "noticeOfChangeAnswers5": {
            "$ref": "#/components/schemas/NoticeOfChangeAnswers"
          },
          "noticeOfChangeAnswers6": {
            "$ref": "#/components/schemas/NoticeOfChangeAnswers"
          },
          "noticeOfChangeAnswers7": {
            "$ref": "#/components/schemas/NoticeOfChangeAnswers"
          },
          "noticeOfChangeAnswers8": {
            "$ref": "#/components/schemas/NoticeOfChangeAnswers"
          },
          "noticeOfChangeAnswers9": {
            "$ref": "#/components/schemas/NoticeOfChangeAnswers"
          },
          "changeOrganisationRequestField": {
            "$ref": "#/components/schemas/ChangeOrganisationRequest"
          },
          "claimantTse": {
            "$ref": "#/components/schemas/ClaimantTse"
          },
          "resTseNotAvailableWarning": {
            "type": "string"
          },
          "tseRespondNotAvailableWarning": {
            "type": "string"
          },
          "respondToTribunalNotAvailableWarning": {
            "type": "string"
          },
          "resTseSelectApplication": {
            "type": "string"
          },
          "resTseVariableContent": {
            "type": "string"
          },
          "resTseDocument1": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "resTseTextBox1": {
            "type": "string"
          },
          "resTseDocument2": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "resTseTextBox2": {
            "type": "string"
          },
          "resTseDocument3": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "resTseTextBox3": {
            "type": "string"
          },
          "resTseDocument4": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "resTseTextBox4": {
            "type": "string"
          },
          "resTseDocument5": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "resTseTextBox5": {
            "type": "string"
          },
          "resTseDocument6": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "resTseTextBox6": {
            "type": "string"
          },
          "resTseDocument7": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "resTseTextBox7": {
            "type": "string"
          },
          "resTseDocument8": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "resTseTextBox8": {
            "type": "string"
          },
          "resTseDocument9": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "resTseTextBox9": {
            "type": "string"
          },
          "resTseDocument10": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "resTseTextBox10": {
            "type": "string"
          },
          "resTseDocument11": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "resTseTextBox11": {
            "type": "string"
          },
          "resTseDocument12": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "resTseTextBox12": {
            "type": "string"
          },
          "resTseCopyToOtherPartyYesOrNo": {
            "type": "string"
          },
          "resTseCopyToOtherPartyTextArea": {
            "type": "string"
          },
          "genericTseApplicationCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GenericTseApplicationTypeItem"
            }
          },
          "tseApplicationStoredCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GenericTseApplicationTypeItem"
            }
          },
          "claimantTseSelectApplication": {
            "type": "string"
          },
          "claimantTseRule92": {
            "type": "string"
          },
          "claimantTseRespNotAvailable": {
            "type": "string"
          },
          "claimantTseDocument1": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "claimantTseTextBox1": {
            "type": "string"
          },
          "claimantTseDocument2": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "claimantTseTextBox2": {
            "type": "string"
          },
          "claimantTseDocument3": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "claimantTseTextBox3": {
            "type": "string"
          },
          "claimantTseDocument4": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "claimantTseTextBox4": {
            "type": "string"
          },
          "claimantTseDocument5": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "claimantTseTextBox5": {
            "type": "string"
          },
          "claimantTseDocument6": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "claimantTseTextBox6": {
            "type": "string"
          },
          "claimantTseDocument7": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "claimantTseTextBox7": {
            "type": "string"
          },
          "claimantTseDocument8": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "claimantTseTextBox8": {
            "type": "string"
          },
          "claimantTseDocument9": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "claimantTseTextBox9": {
            "type": "string"
          },
          "claimantTseDocument10": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "claimantTseTextBox10": {
            "type": "string"
          },
          "claimantTseDocument11": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "claimantTseTextBox11": {
            "type": "string"
          },
          "claimantTseDocument12": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "claimantTseTextBox12": {
            "type": "string"
          },
          "claimantTseDocument13": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "claimantTseTextBox13": {
            "type": "string"
          },
          "claimantTseRule92AnsNoGiveDetails": {
            "type": "string"
          },
          "claimantTseTableMarkUp": {
            "type": "string"
          },
          "tseAdminSelectApplication": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "tseAdminTableMarkUp": {
            "type": "string"
          },
          "tseAdminEnterNotificationTitle": {
            "type": "string"
          },
          "tseAdminDecision": {
            "type": "string"
          },
          "tseAdminDecisionDetails": {
            "type": "string"
          },
          "tseAdminTypeOfDecision": {
            "type": "string"
          },
          "tseAdminIsResponseRequired": {
            "type": "string"
          },
          "tseAdminSelectPartyRespond": {
            "type": "string"
          },
          "tseAdminAdditionalInformation": {
            "type": "string"
          },
          "tseAdminResponseRequiredYesDoc": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemDocumentType"
            }
          },
          "tseAdminResponseRequiredNoDoc": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemDocumentType"
            }
          },
          "tseAdminDecisionMadeBy": {
            "type": "string"
          },
          "tseAdminDecisionMadeByFullName": {
            "type": "string"
          },
          "tseAdminSelectPartyNotify": {
            "type": "string"
          },
          "tseRespondSelectApplication": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "tseResponseIntro": {
            "type": "string"
          },
          "tseResponseTable": {
            "type": "string"
          },
          "tseResponseText": {
            "type": "string"
          },
          "tseResponseHasSupportingMaterial": {
            "type": "string"
          },
          "tseResponseSupportingMaterial": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemDocumentType"
            }
          },
          "tseResponseCopyToOtherParty": {
            "type": "string"
          },
          "tseResponseCopyNoGiveDetails": {
            "type": "string"
          },
          "resTseTableMarkUp": {
            "type": "string"
          },
          "tseRespondingToTribunal": {
            "type": "string"
          },
          "tseRespondingToTribunalText": {
            "type": "string"
          },
          "claimantRepRespondSelectApplication": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "claimantRepResponseIntro": {
            "type": "string"
          },
          "claimantRepResponseTable": {
            "type": "string"
          },
          "claimantRepResponseText": {
            "type": "string"
          },
          "claimantRepResponseHasSupportingMaterial": {
            "type": "string"
          },
          "claimantRepResSupportingMaterial": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemDocumentType"
            }
          },
          "claimantRepResponseCopyToOtherParty": {
            "type": "string"
          },
          "claimantRepResponseCopyNoGiveDetails": {
            "type": "string"
          },
          "resClaimantRepTableMarkUp": {
            "type": "string"
          },
          "claimantRepResToTribunal": {
            "type": "string"
          },
          "claimantRepResToTribunalText": {
            "type": "string"
          },
          "tseAdmReplyTableMarkUp": {
            "type": "string"
          },
          "tseAdmReplyEnterResponseTitle": {
            "type": "string"
          },
          "tseAdmReplyAdditionalInformation": {
            "type": "string"
          },
          "tseAdmReplyAddDocument": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemDocumentType"
            }
          },
          "tseAdmReplyIsCmoOrRequest": {
            "type": "string"
          },
          "tseAdmReplyCmoMadeBy": {
            "type": "string"
          },
          "tseAdmReplyRequestMadeBy": {
            "type": "string"
          },
          "tseAdmReplyCmoEnterFullName": {
            "type": "string"
          },
          "tseAdmReplyCmoIsResponseRequired": {
            "type": "string"
          },
          "tseAdmReplyRequestEnterFullName": {
            "type": "string"
          },
          "tseAdmReplyRequestIsResponseRequired": {
            "type": "string"
          },
          "tseAdmReplyRequestSelectPartyRespond": {
            "type": "string"
          },
          "tseAdmReplyCmoSelectPartyRespond": {
            "type": "string"
          },
          "tseAdmReplySelectPartyNotify": {
            "type": "string"
          },
          "tseAdminCloseApplicationTable": {
            "type": "string"
          },
          "tseAdminCloseApplicationText": {
            "type": "string"
          },
          "tseViewApplicationOpenOrClosed": {
            "type": "string"
          },
          "tseViewApplicationSelect": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "tseApplicationSummaryAndResponsesMarkup": {
            "type": "string"
          },
          "pseRespondentSelectOrderOrRequest": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "pseRespondentOrdReqTableMarkUp": {
            "type": "string"
          },
          "pseRespondentOrdReqResponseText": {
            "type": "string"
          },
          "pseRespondentOrdReqHasSupportingMaterial": {
            "type": "string"
          },
          "pseRespondentOrdReqUploadDocument": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemDocumentType"
            }
          },
          "pseRespondentOrdReqCopyToOtherParty": {
            "type": "string"
          },
          "pseRespondentOrdReqCopyNoGiveDetails": {
            "type": "string"
          },
          "pseRespondentSelectJudgmentOrderNotification": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "sendNotificationCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/SendNotificationTypeItem"
            }
          },
          "sendNotificationTitle": {
            "type": "string"
          },
          "sendNotificationLetter": {
            "type": "string"
          },
          "sendNotificationUploadDocument": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "sendNotificationSubject": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "sendNotificationAdditionalInfo": {
            "type": "string"
          },
          "sendNotificationNotify": {
            "type": "string"
          },
          "sendNotificationNotifyLeadCase": {
            "type": "string"
          },
          "sendNotificationSelectHearing": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "sendNotificationCaseManagement": {
            "type": "string"
          },
          "sendNotificationResponseTribunal": {
            "type": "string"
          },
          "sendNotificationWhoCaseOrder": {
            "type": "string"
          },
          "sendNotificationSelectParties": {
            "type": "string"
          },
          "sendNotificationFullName": {
            "type": "string"
          },
          "sendNotificationFullName2": {
            "type": "string"
          },
          "sendNotificationDetails": {
            "type": "string"
          },
          "sendNotificationDecision": {
            "type": "string"
          },
          "sendNotificationRequestMadeBy": {
            "type": "string"
          },
          "sendNotificationEccQuestion": {
            "type": "string"
          },
          "sendNotificationWhoMadeJudgement": {
            "type": "string"
          },
          "notificationSentFrom": {
            "type": "string"
          },
          "selectNotificationDropdown": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "notificationMarkdown": {
            "type": "string"
          },
          "pseViewNotifications": {
            "type": "string"
          },
          "et3RepresentingRespondent": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DynamicListTypeItem"
            }
          },
          "respondNotificationTitle": {
            "type": "string"
          },
          "respondNotificationAdditionalInfo": {
            "type": "string"
          },
          "respondNotificationUploadDocument": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "respondNotificationCmoOrRequest": {
            "type": "string"
          },
          "respondNotificationResponseRequired": {
            "type": "string"
          },
          "respondNotificationWhoRespond": {
            "type": "string"
          },
          "respondNotificationCaseManagementMadeBy": {
            "type": "string"
          },
          "respondNotificationRequestMadeBy": {
            "type": "string"
          },
          "respondNotificationFullName": {
            "type": "string"
          },
          "respondNotificationPartyToNotify": {
            "type": "string"
          },
          "bundlesRespondentPrepareDocNotesShow": {
            "type": "string"
          },
          "bundlesRespondentAgreedDocWith": {
            "type": "string"
          },
          "bundlesRespondentAgreedDocWithBut": {
            "type": "string"
          },
          "bundlesRespondentAgreedDocWithNo": {
            "type": "string"
          },
          "bundlesRespondentSelectHearing": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "submitEt3Respondent": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "bundlesRespondentWhatDocuments": {
            "type": "string"
          },
          "bundlesRespondentWhoseDocuments": {
            "type": "string"
          },
          "bundlesRespondentUploadFile": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "bundlesRespondentCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemHearingBundleType"
            }
          },
          "bundlesClaimantCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemHearingBundleType"
            }
          },
          "removedHearingBundlesCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemRemovedHearingBundleItem"
            }
          },
          "removeHearingBundleSelect": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "removeBundleDropDownSelectedParty": {
            "type": "string"
          },
          "hearingBundleRemoveReason": {
            "type": "string"
          },
          "adrDocumentCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "piiDocumentCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "appealDocumentCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "autoListFlag": {
            "type": "string"
          },
          "caseAdditionalSecurityFlag": {
            "type": "string"
          },
          "caseCategories": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/CaseCategory"
            }
          },
          "caseDeepLink": {
            "type": "string"
          },
          "caseInterpreterRequiredFlag": {
            "type": "string"
          },
          "caseManagementLocationCode": {
            "type": "string"
          },
          "caseSLAStartDate": {
            "type": "string"
          },
          "caseRestrictedFlag": {
            "type": "string"
          },
          "duration": {
            "type": "integer",
            "format": "int32"
          },
          "externalCaseReference": {
            "type": "string"
          },
          "facilitiesRequiredList": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "hearingChannels": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "hearingInWelshFlag": {
            "type": "string"
          },
          "hearingIsLinkedFlag": {
            "type": "string"
          },
          "hearingLocations": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/HearingLocation"
            }
          },
          "hearingPriorityType": {
            "type": "string"
          },
          "hearingRequester": {
            "type": "string"
          },
          "hearingType": {
            "type": "string"
          },
          "hearingWindow": {
            "$ref": "#/components/schemas/HearingWindow"
          },
          "caseNameHmctsInternal": {
            "type": "string"
          },
          "caseManagementCategory": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "hmctsServiceID": {
            "type": "string"
          },
          "hmctsCaseCategory": {
            "type": "string"
          },
          "judiciary": {
            "$ref": "#/components/schemas/Judiciary"
          },
          "leadJudgeContractType": {
            "type": "string"
          },
          "listingComments": {
            "type": "string"
          },
          "numberOfPhysicalAttendees": {
            "type": "integer",
            "format": "int32"
          },
          "panelRequirements": {
            "$ref": "#/components/schemas/PanelRequirements"
          },
          "parties": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PartyDetails"
            }
          },
          "draftAndSignJudgement": {
            "$ref": "#/components/schemas/DraftAndSignJudgement"
          },
          "privateHearingRequiredFlag": {
            "type": "string"
          },
          "publicCaseName": {
            "type": "string"
          },
          "screenFlow": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ScreenNavigation"
            }
          },
          "vocabulary": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Vocabulary"
            }
          },
          "caseLinks": {
            "type": "array",
            "properties": {
              "empty": {
                "type": "boolean"
              }
            },
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemCaseLink"
            }
          },
          "partySelection": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimantUnavailability": {
            "type": "array",
            "properties": {
              "empty": {
                "type": "boolean"
              }
            },
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemUnavailabilityRanges"
            }
          },
          "respondentUnavailability": {
            "type": "array",
            "properties": {
              "empty": {
                "type": "boolean"
              }
            },
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemUnavailabilityRanges"
            }
          },
          "acasCertificate": {
            "type": "string"
          },
          "SearchCriteria": {
            "$ref": "#/components/schemas/SearchCriteria"
          },
          "batchCaseStayed": {
            "type": "string"
          },
          "et1ReppedTriageAddress": {
            "$ref": "#/components/schemas/Address"
          },
          "et1ReppedTriageYesNo": {
            "type": "string"
          },
          "et1ClaimStatuses": {
            "type": "string"
          },
          "et1ReppedSectionOne": {
            "type": "string"
          },
          "et1ReppedSectionTwo": {
            "type": "string"
          },
          "et1ReppedSectionThree": {
            "type": "string"
          },
          "claimantFirstName": {
            "type": "string"
          },
          "claimantLastName": {
            "type": "string"
          },
          "claimantDateOfBirth": {
            "type": "string"
          },
          "claimantSex": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimantPreferredTitle": {
            "type": "string"
          },
          "claimantContactAddress": {
            "$ref": "#/components/schemas/Address"
          },
          "representativeAttendHearing": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimantAttendHearing": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimantSupportQuestion": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimantSupportQuestionReason": {
            "type": "string"
          },
          "representativeContactPreference": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "contactPreferencePostReason": {
            "type": "string"
          },
          "representativePhoneNumber": {
            "type": "string"
          },
          "representativeReferenceNumber": {
            "type": "string"
          },
          "didClaimantWorkForOrg": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimantStillWorking": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimantJobTitle": {
            "type": "string"
          },
          "claimantStartDate": {
            "type": "string"
          },
          "claimantEndDate": {
            "type": "string"
          },
          "claimantStillWorkingNoticePeriod": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimantStillWorkingNoticePeriodMonths": {
            "type": "string"
          },
          "claimantStillWorkingNoticePeriodWeeks": {
            "type": "string"
          },
          "claimantWorkingNoticePeriod": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimantWorkingNoticePeriodMonths": {
            "type": "string"
          },
          "claimantWorkingNoticePeriodWeeks": {
            "type": "string"
          },
          "claimantWorkingNoticePeriodEndDate": {
            "type": "string"
          },
          "claimantNoLongerWorkingQuestion": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimantNoLongerWorking": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimantNoLongerWorkingMonths": {
            "type": "string"
          },
          "claimantNoLongerWorkingWeeks": {
            "type": "string"
          },
          "claimantNoLongerWorkingPay": {
            "type": "string"
          },
          "claimantAverageWeeklyWorkHours": {
            "type": "string"
          },
          "claimantPayBeforeTax": {
            "type": "string"
          },
          "claimantPayAfterTax": {
            "type": "string"
          },
          "claimantPayType": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimantPensionContribution": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimantWeeklyPension": {
            "type": "string"
          },
          "claimantEmployeeBenefits": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimantBenefits": {
            "type": "string"
          },
          "claimantNewJob": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimantNewJobStartDate": {
            "type": "string"
          },
          "claimantNewJobPayBeforeTax": {
            "type": "string"
          },
          "claimantNewJobPayPeriod": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "respondentType": {
            "type": "string"
          },
          "respondentOrganisationName": {
            "type": "string"
          },
          "respondentFirstName": {
            "type": "string"
          },
          "respondentLastName": {
            "type": "string"
          },
          "respondentAddress": {
            "$ref": "#/components/schemas/Address"
          },
          "didClaimantWorkAtSameAddressPreamble": {
            "type": "string"
          },
          "didClaimantWorkAtSameAddress": {
            "type": "string"
          },
          "claimantWorkAddressYes": {
            "$ref": "#/components/schemas/Address"
          },
          "respondentAcasYesNo": {
            "type": "string"
          },
          "respondentAcasNumber": {
            "type": "string"
          },
          "respondentNoAcasCertificateReason": {
            "type": "string"
          },
          "addAdditionalRespondentPreamble": {
            "type": "string"
          },
          "addAdditionalRespondent": {
            "type": "string"
          },
          "et1ReppedRespondentCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemCreateRespondentType"
            }
          },
          "et1SectionThreeClaimDetails": {
            "type": "string"
          },
          "et1SectionThreeDocumentUpload": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "et1SectionThreeTypeOfClaim": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "discriminationTypesOfClaim": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "payTypesOfClaim": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "whistleblowingYesNo": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "whistleblowingRegulator": {
            "type": "string"
          },
          "otherTypeOfClaimDetails": {
            "type": "string"
          },
          "claimSuccessful": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "compensationDetails": {
            "type": "string"
          },
          "tribunalRecommendationDetails": {
            "type": "string"
          },
          "linkedCasesYesNo": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "linkedCasesDetails": {
            "type": "string"
          },
          "et1SectionOneDateCompleted": {
            "type": "string"
          },
          "et1SectionTwoDateCompleted": {
            "type": "string"
          },
          "et1SectionThreeDateCompleted": {
            "type": "string"
          },
          "claimantRepresentativeOrganisationPolicy": {
            "$ref": "#/components/schemas/OrganisationPolicy"
          },
          "downloadDraftEt1Date": {
            "type": "string"
          },
          "hearingContactLanguage": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimantHearingContactLanguage": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "contactLanguageQuestion": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "requiresSubmissionDocuments": {
            "type": "string"
          },
          "legalRepDocumentsMarkdown": {
            "type": "string"
          },
          "claimantSelectNotification": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "claimantNotificationTableMarkdown": {
            "type": "string"
          },
          "claimantNotificationResponseText": {
            "type": "string"
          },
          "claimantNotificationSupportingMaterial": {
            "type": "string"
          },
          "claimantNotificationDocuments": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemDocumentType"
            }
          },
          "isRespondentSystemUser": {
            "type": "string"
          },
          "claimantNotificationCopyToOtherParty": {
            "type": "string"
          },
          "claimantNotificationsCopyNoDetails": {
            "type": "string"
          },
          "uploadOrRemoveDcf": {
            "type": "string"
          }
        }
      },
      "CaseFlagsType": {
        "type": "object",
        "properties": {
          "partyName": {
            "type": "string"
          },
          "roleOnCase": {
            "type": "string"
          },
          "details": {
            "type": "array",
            "properties": {
              "empty": {
                "type": "boolean"
              }
            },
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemFlagDetailType"
            }
          }
        }
      },
      "CaseLink": {
        "type": "object",
        "properties": {
          "CaseReference": {
            "type": "string"
          },
          "CaseType": {
            "type": "string"
          },
          "CreatedDateTime": {
            "type": "string"
          },
          "ReasonForLink": {
            "type": "array",
            "properties": {
              "empty": {
                "type": "boolean"
              }
            },
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemLinkReason"
            }
          }
        }
      },
      "CaseLocation": {
        "type": "object",
        "properties": {
          "baseLocation": {
            "type": "string"
          },
          "region": {
            "type": "string"
          }
        }
      },
      "CasePreAcceptType": {
        "type": "object",
        "properties": {
          "caseAccepted": {
            "type": "string"
          },
          "dateAccepted": {
            "type": "string"
          },
          "dateRejected": {
            "type": "string"
          },
          "rejectReason": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "ChangeOrganisationRequest": {
        "type": "object",
        "properties": {
          "OrganisationToAdd": {
            "$ref": "#/components/schemas/Organisation"
          },
          "OrganisationToRemove": {
            "$ref": "#/components/schemas/Organisation"
          },
          "CaseRoleId": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "RequestTimestamp": {
            "type": "string",
            "format": "date-time"
          },
          "ApprovalStatus": {
            "type": "string",
            "enum": [
              "0",
              "1",
              "2"
            ]
          }
        }
      },
      "ClaimServedType": {
        "type": "object",
        "properties": {
          "reportedNumberOfDays": {
            "type": "string"
          },
          "actualNumberOfDays": {
            "type": "string"
          },
          "claimServedType": {
            "type": "string"
          },
          "claimServedCaseNumber": {
            "type": "string"
          },
          "caseReceiptDate": {
            "type": "string"
          },
          "claimServedDate": {
            "type": "string"
          }
        }
      },
      "ClaimServedTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/ClaimServedType"
          }
        }
      },
      "ClaimantHearingPreference": {
        "type": "object",
        "properties": {
          "hearing_preferences": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "hearing_assistance": {
            "type": "string"
          },
          "reasonable_adjustments": {
            "type": "string"
          },
          "reasonable_adjustments_detail": {
            "type": "string"
          },
          "contact_language": {
            "type": "string"
          },
          "hearing_language": {
            "type": "string"
          },
          "claimant_hearing_panel_preference": {
            "type": "string"
          },
          "claimant_hearing_panel_preference_why": {
            "type": "string"
          }
        }
      },
      "ClaimantIndType": {
        "type": "object",
        "properties": {
          "claimant_preferred_title": {
            "type": "string"
          },
          "claimant_title1": {
            "type": "string"
          },
          "claimant_title_other": {
            "type": "string"
          },
          "claimant_first_names": {
            "type": "string"
          },
          "claimant_last_name": {
            "type": "string"
          },
          "claimant_date_of_birth": {
            "type": "string"
          },
          "claimant_gender": {
            "type": "string"
          },
          "claimant_sex": {
            "type": "string"
          },
          "claimant_gender_identity_same": {
            "type": "string"
          },
          "claimant_gender_identity": {
            "type": "string"
          }
        }
      },
      "ClaimantOtherType": {
        "type": "object",
        "properties": {
          "claimant_occupation": {
            "type": "string"
          },
          "claimant_employed_from": {
            "type": "string"
          },
          "claimant_employed_currently": {
            "type": "string"
          },
          "claimant_employed_to": {
            "type": "string"
          },
          "claimant_employed_notice_period": {
            "type": "string"
          },
          "claimant_disabled": {
            "type": "string"
          },
          "claimant_disabled_details": {
            "type": "string"
          },
          "claimant_notice_period": {
            "type": "string"
          },
          "claimant_notice_period_unit": {
            "type": "string"
          },
          "claimant_notice_period_duration": {
            "type": "string"
          },
          "claimant_average_weekly_hours": {
            "type": "string"
          },
          "claimant_pay_before_tax": {
            "type": "string"
          },
          "claimant_pay_after_tax": {
            "type": "string"
          },
          "claimant_pay_cycle": {
            "type": "string"
          },
          "claimant_pension_contribution": {
            "type": "string"
          },
          "claimant_pension_weekly_contribution": {
            "type": "string"
          },
          "claimant_benefits": {
            "type": "string"
          },
          "claimant_benefits_detail": {
            "type": "string"
          },
          "pastEmployer": {
            "type": "string"
          },
          "stillWorking": {
            "type": "string"
          }
        }
      },
      "ClaimantRequestType": {
        "type": "object",
        "properties": {
          "claim_outcome": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claimant_compensation_text": {
            "type": "string"
          },
          "claimant_compensation_amount": {
            "type": "string"
          },
          "claimant_tribunal_recommendation": {
            "type": "string"
          },
          "whistleblowing": {
            "type": "string"
          },
          "whistleblowing_authority": {
            "type": "string"
          },
          "claim_description": {
            "type": "string"
          },
          "claim_description_document": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "discrimination_claims": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "pay_claims": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "linked_cases": {
            "type": "string"
          },
          "linked_cases_detail": {
            "type": "string"
          },
          "other_claim": {
            "type": "string"
          }
        }
      },
      "ClaimantType": {
        "type": "object",
        "properties": {
          "claimant_addressUK": {
            "$ref": "#/components/schemas/Address"
          },
          "claimant_phone_number": {
            "type": "string"
          },
          "claimant_mobile_number": {
            "type": "string"
          },
          "claimant_email_address": {
            "type": "string"
          },
          "claimant_contact_preference": {
            "type": "string"
          }
        }
      },
      "ClaimantWorkAddressType": {
        "type": "object",
        "properties": {
          "claimant_work_address": {
            "$ref": "#/components/schemas/Address"
          },
          "claimant_work_phone_number": {
            "type": "string"
          }
        }
      },
      "CompanyPremisesType": {
        "type": "object",
        "properties": {
          "premises": {
            "type": "string"
          },
          "address": {
            "$ref": "#/components/schemas/Address"
          }
        }
      },
      "CorrespondenceScotType": {
        "type": "object",
        "properties": {
          "topLevel_Scot_Documents": {
            "type": "string"
          },
          "part_0_Scot_Documents": {
            "type": "string"
          },
          "part_1_Scot_Documents": {
            "type": "string"
          },
          "part_2_Scot_Documents": {
            "type": "string"
          },
          "part_3_Scot_Documents": {
            "type": "string"
          },
          "part_4_Scot_Documents": {
            "type": "string"
          },
          "part_5_Scot_Documents": {
            "type": "string"
          },
          "Part_6_Scot_Documents": {
            "type": "string"
          },
          "Part_7_Scot_Documents": {
            "type": "string"
          },
          "Part_8_Scot_Documents": {
            "type": "string"
          },
          "Part_9_Scot_Documents": {
            "type": "string"
          },
          "Part_10_Scot_Documents": {
            "type": "string"
          },
          "Part_11_Scot_Documents": {
            "type": "string"
          },
          "Part_12_Scot_Documents": {
            "type": "string"
          },
          "Part_13_Scot_Documents": {
            "type": "string"
          },
          "Part_14_Scot_Documents": {
            "type": "string"
          },
          "Part_15_Scot_Documents": {
            "type": "string"
          },
          "Part_16_Scot_Documents": {
            "type": "string"
          },
          "claimantORrespondent": {
            "type": "string"
          },
          "hearingNumber": {
            "type": "string"
          },
          "dynamicHearingNumber": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "letterAddress": {
            "type": "string"
          }
        }
      },
      "CorrespondenceType": {
        "type": "object",
        "properties": {
          "topLevel_Documents": {
            "type": "string"
          },
          "part_0_Documents": {
            "type": "string"
          },
          "part_1_Documents": {
            "type": "string"
          },
          "part_2_Documents": {
            "type": "string"
          },
          "part_3_Documents": {
            "type": "string"
          },
          "part_4_Documents": {
            "type": "string"
          },
          "part_5_Documents": {
            "type": "string"
          },
          "Part_6_Documents": {
            "type": "string"
          },
          "Part_7_Documents": {
            "type": "string"
          },
          "Part_8_Documents": {
            "type": "string"
          },
          "Part_9_Documents": {
            "type": "string"
          },
          "Part_10_Documents": {
            "type": "string"
          },
          "Part_11_Documents": {
            "type": "string"
          },
          "Part_12_Documents": {
            "type": "string"
          },
          "Part_13_Documents": {
            "type": "string"
          },
          "Part_14_Documents": {
            "type": "string"
          },
          "Part_15_Documents": {
            "type": "string"
          },
          "Part_16_Documents": {
            "type": "string"
          },
          "Part_17_Documents": {
            "type": "string"
          },
          "Part_18_Documents": {
            "type": "string"
          },
          "Part_20_Documents": {
            "type": "string"
          },
          "hearingNumber": {
            "type": "string"
          },
          "dynamicHearingNumber": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          }
        }
      },
      "CostsType": {
        "type": "object",
        "properties": {
          "costs_question": {
            "type": "string"
          },
          "costs_expenses_awarded_to": {
            "type": "string"
          },
          "costs_expenses_awarded_against": {
            "type": "string"
          },
          "costs_expenses_awarded_amount": {
            "type": "string"
          },
          "preparation_of_time_awarded_to": {
            "type": "string"
          },
          "preparation_of_time_awarded_against": {
            "type": "string"
          },
          "preparation_of_time_amount_awarded": {
            "type": "string"
          },
          "wasted_cost_awarded_to": {
            "type": "string"
          },
          "wasted_cost_awarded_against": {
            "type": "string"
          },
          "wasted_cost_amount_awarded": {
            "type": "string"
          },
          "pro_bono_costs_awarded_to": {
            "type": "string"
          },
          "pro_bono_costs_awarded_against": {
            "type": "string"
          },
          "pro_bono_costs_amount_awarded": {
            "type": "string"
          }
        }
      },
      "CreateRespondentType": {
        "type": "object",
        "properties": {
          "respondentType": {
            "type": "string"
          },
          "respondentFirstName": {
            "type": "string"
          },
          "respondentLastName": {
            "type": "string"
          },
          "respondentOrganisation": {
            "type": "string"
          },
          "respondent_address": {
            "$ref": "#/components/schemas/Address"
          },
          "respondent_ACAS_question": {
            "type": "string"
          },
          "respondent_ACAS": {
            "type": "string"
          },
          "respondent_ACAS_no": {
            "type": "string"
          }
        }
      },
      "DateListedType": {
        "type": "object",
        "properties": {
          "listedDate": {
            "type": "string"
          },
          "Hearing_status": {
            "type": "string"
          },
          "Postponed_by": {
            "type": "string"
          },
          "hearingVenueDay": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "hearingVenueDayScotland": {
            "type": "string"
          },
          "hearingRoom": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "hearingClerk": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "Hearing_typeReadingDeliberation": {
            "type": "string"
          },
          "Hearing_Glasgow": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "Hearing_Aberdeen": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "Hearing_Dundee": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "Hearing_Edinburgh": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "hearingCaseDisposed": {
            "type": "string"
          },
          "Hearing_part_heard": {
            "type": "string"
          },
          "Hearing_reserved_judgement": {
            "type": "string"
          },
          "attendee_claimant": {
            "type": "string"
          },
          "attendee_non_attendees": {
            "type": "string"
          },
          "attendee_resp_no_rep": {
            "type": "string"
          },
          "attendee_resp_&_rep": {
            "type": "string"
          },
          "attendee_rep_only": {
            "type": "string"
          },
          "hearingTimingStart": {
            "type": "string"
          },
          "hearingTimingBreak": {
            "type": "string"
          },
          "hearingTimingResume": {
            "type": "string"
          },
          "hearingTimingFinish": {
            "type": "string"
          },
          "hearingTimingDuration": {
            "type": "string"
          },
          "HearingNotes2": {
            "type": "string"
          },
          "postponedDate": {
            "type": "string"
          }
        }
      },
      "DateListedTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/DateListedType"
          }
        }
      },
      "DepositType": {
        "type": "object",
        "properties": {
          "Deposit_amount": {
            "type": "string"
          },
          "dynamicDepositOrderAgainst": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "depositOrderAgainst": {
            "type": "string"
          },
          "dynamicDepositRequestedBy": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "deposit_requested_by": {
            "type": "string"
          },
          "deposit_covers": {
            "type": "string"
          },
          "deposit_order_sent": {
            "type": "string"
          },
          "deposit_due": {
            "type": "string"
          },
          "depositReceived": {
            "type": "string"
          },
          "depositReceivedDate": {
            "type": "string"
          },
          "deposit_time_ext": {
            "type": "string"
          },
          "deposit_time_ext_due": {
            "type": "string"
          },
          "deposit_refund": {
            "type": "string"
          },
          "deposit_refund_date": {
            "type": "string"
          },
          "dynamicDepositRefundedTo": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "depositRefundedTo": {
            "type": "string"
          },
          "depositNotes": {
            "type": "string"
          },
          "depositDoc": {
            "$ref": "#/components/schemas/Document"
          },
          "depositAmountRefunded": {
            "type": "string"
          }
        }
      },
      "DepositTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/DepositType"
          }
        }
      },
      "DigitalCaseFileType": {
        "type": "object",
        "properties": {
          "uploadedDocument": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "status": {
            "type": "string"
          },
          "dateGenerated": {
            "type": "string"
          },
          "error": {
            "type": "string"
          }
        }
      },
      "Document": {
        "type": "object",
        "properties": {
          "document_url": {
            "type": "string"
          },
          "document_binary_url": {
            "type": "string"
          },
          "document_filename": {
            "type": "string"
          },
          "category_id": {
            "type": "string"
          },
          "upload_timestamp": {
            "type": "string"
          }
        }
      },
      "DocumentLink": {
        "type": "object",
        "properties": {
          "document_url": {
            "type": "string"
          },
          "document_filename": {
            "type": "string"
          },
          "document_binary_url": {
            "type": "string"
          }
        }
      },
      "DraftAndSignJudgement": {
        "type": "object",
        "properties": {
          "isJudgement": {
            "type": "string"
          },
          "draftAndSignJudgementDocuments": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "furtherDirections": {
            "type": "string"
          }
        }
      },
      "DynamicListType": {
        "type": "object",
        "properties": {
          "dynamicList": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          }
        }
      },
      "DynamicListTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/DynamicListType"
          }
        }
      },
      "EccCounterClaimType": {
        "type": "object",
        "properties": {
          "counterClaim": {
            "type": "string"
          }
        }
      },
      "EccCounterClaimTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/EccCounterClaimType"
          }
        }
      },
      "EtICFurtherInfoAnswers": {
        "type": "object",
        "properties": {
          "etICFurtherInformationGiveDetails": {
            "type": "string"
          },
          "etICFurtherInformationTimeToComply": {
            "type": "string"
          }
        }
      },
      "EtICHearingListedAnswers": {
        "type": "object",
        "properties": {
          "etICHearingListed": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICExtendDurationGiveDetails": {
            "type": "string"
          },
          "etICOtherGiveDetails": {
            "type": "string"
          },
          "etICIsHearingWithJudgeOrMembers": {
            "type": "string"
          },
          "etICIsHearingWithJudgeOrMembersReason": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICIsHearingWithJudgeOrMembersFurtherDetails": {
            "type": "string"
          },
          "etICHearingAnyOtherDirections": {
            "type": "string"
          }
        }
      },
      "EtICListForFinalHearing": {
        "type": "object",
        "properties": {
          "etICTypeOfFinalHearing": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICLengthOfFinalHearing": {
            "type": "string"
          },
          "finalHearingLengthNumType": {
            "type": "string"
          }
        }
      },
      "EtICListForFinalHearingUpdated": {
        "type": "object",
        "properties": {
          "etICTypeOfFinalHearingV2": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICTypeOfVideoHearingOrder": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICTypeOfF2fHearingOrder": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICHearingOrderBUCompliance": {
            "type": "string"
          },
          "etICLengthOfFinalHearingV2": {
            "type": "string"
          },
          "finalHearingLengthNumTypeV2": {
            "type": "string"
          },
          "etICFinalHearingIsEJSitAlone": {
            "type": "string"
          },
          "etICFinalHearingIsEJSitAloneReason": {
            "type": "string"
          },
          "etICFinalHearingIsEJSitAloneFurtherDetails": {
            "type": "string"
          }
        }
      },
      "EtICListForPreliminaryHearing": {
        "type": "object",
        "properties": {
          "etICTypeOfPreliminaryHearing": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICPurposeOfPreliminaryHearing": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICGiveDetailsOfHearingNotice": {
            "type": "string"
          },
          "etICLengthOfPrelimHearing": {
            "type": "string"
          },
          "prelimHearingLengthNumType": {
            "type": "string"
          }
        }
      },
      "EtICListForPreliminaryHearingUpdated": {
        "type": "object",
        "properties": {
          "etICTypeOfPreliminaryHearingV2": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICPurposeOfPreliminaryHearingV2": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICGiveDetailsOfHearingNoticeV2": {
            "type": "string"
          },
          "etICLengthOfPrelimHearingV2": {
            "type": "string"
          },
          "prelimHearingLengthNumTypeV2": {
            "type": "string"
          },
          "etICIsPreliminaryHearingWithMembersV2": {
            "type": "string"
          },
          "etICIsPreliminaryHearingWithMembersReasonV2": {
            "type": "string"
          }
        }
      },
      "EtICSeekComments": {
        "type": "object",
        "properties": {
          "etICTypeOfCvpHearing": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICFinalHearingDetails": {
            "type": "string"
          },
          "etICPrelimHearingDetails": {
            "type": "string"
          },
          "etICPrelimHearingYesNo": {
            "type": "string"
          }
        }
      },
      "EtIcudlHearing": {
        "type": "object",
        "properties": {
          "etICEJSitAlone": {
            "type": "string"
          },
          "etICIssueStandardDirections": {
            "type": "string"
          },
          "etICUdlGiveReasonsIsd": {
            "type": "string"
          },
          "etICUDLGiveReasons": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICUDLDisputeOnFacts": {
            "type": "string"
          },
          "etICUDLLittleOrNoAgreement": {
            "type": "string"
          },
          "etICUDLIssueOfLawArising": {
            "type": "string"
          },
          "etICUDLViewsOfParties": {
            "type": "string"
          },
          "etICUDLNoViewsExpressedByParties": {
            "type": "string"
          },
          "etICUDLConcurrentProceedings": {
            "type": "string"
          },
          "etICUDLOther": {
            "type": "string"
          },
          "etICUDLHearFormat": {
            "type": "string"
          },
          "etICUDLCVPIssue": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICUDLFinalF2FIssue": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICBUCheckComplianceOrders": {
            "type": "string"
          }
        }
      },
      "EtInitialConsiderationRule27": {
        "type": "object",
        "properties": {
          "etICRule27ClaimToBe": {
            "type": "string"
          },
          "etICRule27WhichPart": {
            "type": "string"
          },
          "etICRule27Direction": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "etICRule27DirectionReason": {
            "type": "string"
          },
          "etICRule27NoJurisdictionReason": {
            "type": "string"
          },
          "etICRule27NumberOfDays": {
            "type": "string"
          }
        }
      },
      "EtInitialConsiderationRule28": {
        "type": "object",
        "properties": {
          "etICRule28ClaimToBe": {
            "type": "string"
          },
          "etICRule28WhichPart": {
            "type": "string"
          },
          "etICRule28DirectionReason": {
            "type": "string"
          },
          "etICRule28NumberOfDays": {
            "type": "string"
          }
        }
      },
      "FlagDetailType": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "name_cy": {
            "type": "string"
          },
          "subTypeValue": {
            "type": "string"
          },
          "subTypeValue_cy": {
            "type": "string"
          },
          "subTypeKey": {
            "type": "string"
          },
          "otherDescription": {
            "type": "string"
          },
          "otherDescription_cy": {
            "type": "string"
          },
          "flagComment": {
            "type": "string"
          },
          "flagComment_cy": {
            "type": "string"
          },
          "dateTimeModified": {
            "type": "string"
          },
          "dateTimeCreated": {
            "type": "string"
          },
          "path": {
            "type": "array",
            "properties": {
              "empty": {
                "type": "boolean"
              }
            },
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemString"
            }
          },
          "hearingRelevant": {
            "type": "string"
          },
          "flagCode": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "availableExternally": {
            "type": "string"
          }
        }
      },
      "GenericTseApplicationType": {
        "type": "object",
        "properties": {
          "number": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "applicant": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "documentUpload": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "details": {
            "type": "string"
          },
          "copyToOtherPartyYesOrNo": {
            "type": "string"
          },
          "copyToOtherPartyText": {
            "type": "string"
          },
          "dueDate": {
            "type": "string"
          },
          "responsesCount": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "closeApplicationNotes": {
            "type": "string"
          },
          "applicationState": {
            "type": "string"
          },
          "respondentResponseRequired": {
            "type": "string"
          },
          "claimantResponseRequired": {
            "type": "string"
          },
          "respondCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TseRespondTypeItem"
            }
          },
          "respondStoredCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TseRespondTypeItem"
            }
          },
          "adminDecision": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TseAdminRecordDecisionTypeItem"
            }
          }
        }
      },
      "GenericTseApplicationTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/GenericTseApplicationType"
          }
        }
      },
      "GenericTypeItemCaseLink": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/CaseLink"
          }
        }
      },
      "GenericTypeItemCreateRespondentType": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/CreateRespondentType"
          }
        }
      },
      "GenericTypeItemFlagDetailType": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/FlagDetailType"
          }
        }
      },
      "GenericTypeItemHearingBundleType": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/HearingBundleType"
          }
        }
      },
      "GenericTypeItemLinkReason": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/LinkReason"
          }
        }
      },
      "GenericTypeItemRemovedHearingBundleItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/RemovedHearingBundleItem"
          }
        }
      },
      "GenericTypeItemRespondNotificationType": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/RespondNotificationType"
          }
        }
      },
      "GenericTypeItemSearchParty": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/SearchParty"
          }
        }
      },
      "GenericTypeItemString": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        }
      },
      "GenericTypeItemUnavailabilityRanges": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/UnavailabilityRanges"
          }
        }
      },
      "GenericTypeItemUpdateReferralType": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/UpdateReferralType"
          }
        }
      },
      "HearingDetailType": {
        "type": "object",
        "properties": {
          "hearingDetailsDate": {
            "type": "string"
          },
          "hearingDetailsStatus": {
            "type": "string"
          },
          "hearingDetailsPostponedBy": {
            "type": "string"
          },
          "hearingDetailsCaseDisposed": {
            "type": "string"
          },
          "hearingDetailsPartHeard": {
            "type": "string"
          },
          "hearingDetailsReservedJudgment": {
            "type": "string"
          },
          "hearingDetailsAttendeeClaimant": {
            "type": "string"
          },
          "hearingDetailsAttendeeNonAttendees": {
            "type": "string"
          },
          "hearingDetailsAttendeeRespNoRep": {
            "type": "string"
          },
          "hearingDetailsAttendeeRespAndRep": {
            "type": "string"
          },
          "hearingDetailsAttendeeRepOnly": {
            "type": "string"
          },
          "hearingDetailsTimingStart": {
            "type": "string"
          },
          "hearingDetailsTimingBreak": {
            "type": "string"
          },
          "hearingDetailsTimingResume": {
            "type": "string"
          },
          "hearingDetailsTimingFinish": {
            "type": "string"
          },
          "hearingDetailsTimingDuration": {
            "type": "string"
          },
          "hearingDetailsHearingNotes2": {
            "type": "string"
          }
        }
      },
      "HearingDetailTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/HearingDetailType"
          }
        }
      },
      "HearingLocation": {
        "required": [
          "locationId"
        ],
        "type": "object",
        "properties": {
          "locationType": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          }
        }
      },
      "HearingType": {
        "type": "object",
        "properties": {
          "Hearing_type": {
            "type": "string"
          },
          "hearingPublicPrivate": {
            "type": "string"
          },
          "hearingNumber": {
            "type": "string"
          },
          "Hearing_venue": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "Hearing_venue_Scotland": {
            "type": "string"
          },
          "hearingEstLengthNum": {
            "type": "string"
          },
          "hearingEstLengthNumType": {
            "type": "string"
          },
          "hearingSitAlone": {
            "type": "string"
          },
          "hearingERMember": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "hearingEEMember": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "Hearing_stage": {
            "type": "string"
          },
          "Hearing_notes": {
            "type": "string"
          },
          "judge": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "Hearing_Glasgow": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "Hearing_Aberdeen": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "Hearing_Dundee": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "Hearing_Edinburgh": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "hearingDateCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DateListedTypeItem"
            }
          },
          "hearingFormat": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "judicialMediation": {
            "type": "string"
          },
          "hearingNotesDocument": {
            "$ref": "#/components/schemas/Document"
          }
        }
      },
      "HearingTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/HearingType"
          }
        }
      },
      "HearingWindow": {
        "type": "object",
        "properties": {
          "dateRangeStart": {
            "type": "string",
            "format": "date"
          },
          "dateRangeEnd": {
            "type": "string",
            "format": "date"
          },
          "firstDateTimeMustBe": {
            "type": "string",
            "format": "date-time"
          }
        }
      },
      "IndividualDetails": {
        "required": [
          "firstName",
          "lastName"
        ],
        "type": "object",
        "properties": {
          "title": {
            "maxLength": 40,
            "minLength": 0,
            "type": "string"
          },
          "firstName": {
            "maxLength": 100,
            "minLength": 0,
            "type": "string"
          },
          "lastName": {
            "maxLength": 730,
            "minLength": 0,
            "type": "string"
          },
          "preferredHearingChannel": {
            "maxLength": 70,
            "minLength": 0,
            "type": "string"
          },
          "interpreterLanguage": {
            "maxLength": 10,
            "minLength": 0,
            "type": "string"
          },
          "reasonableAdjustments": {
            "type": "array",
            "items": {
              "maxLength": 10,
              "minLength": 0,
              "type": "string"
            }
          },
          "otherReasonableAdjustmentDetails": {
            "maxLength": 200,
            "minLength": 0,
            "type": "string"
          },
          "custodyStatus": {
            "maxLength": 80,
            "minLength": 0,
            "type": "string"
          },
          "vulnerableFlag": {
            "type": "boolean"
          },
          "vulnerabilityDetails": {
            "maxLength": 2000,
            "minLength": 0,
            "type": "string"
          },
          "hearingChannelEmail": {
            "type": "array",
            "items": {
              "maxLength": 120,
              "minLength": 0,
              "type": "string"
            }
          },
          "hearingChannelPhone": {
            "type": "array",
            "items": {
              "maxLength": 30,
              "minLength": 0,
              "pattern": "^\\+?(?:[0-9] ?){6,14}[0-9]$",
              "type": "string"
            }
          },
          "relatedParties": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RelatedParty"
            }
          }
        }
      },
      "JudgementDetailsType": {
        "type": "object",
        "properties": {
          "folio_number": {
            "type": "string"
          },
          "reasons_given": {
            "type": "string"
          },
          "date_reasons_issued": {
            "type": "string"
          },
          "awardMade": {
            "type": "string"
          },
          "financialAwardMade": {
            "type": "string"
          },
          "remedy_left_to_parties": {
            "type": "string"
          },
          "reinstate_reengage_order": {
            "type": "string"
          },
          "reinstated_reengaged": {
            "type": "string"
          },
          "cert_of_correction_date": {
            "type": "string"
          },
          "cert_of_correction_sent": {
            "type": "string"
          },
          "non-financial_award": {
            "type": "string"
          },
          "total_award": {
            "type": "string"
          },
          "adjustment": {
            "type": "string"
          },
          "adjustmentPercentage": {
            "type": "string"
          },
          "certificateOfCorrection": {
            "type": "string"
          }
        }
      },
      "JudgementType": {
        "type": "object",
        "properties": {
          "non_hearing_judgment": {
            "type": "string"
          },
          "dynamicJudgementHearing": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "judgmentHearingDate": {
            "type": "string"
          },
          "judgement_type": {
            "type": "string"
          },
          "liability_optional": {
            "type": "string"
          },
          "jurisdictionCodes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/JurCodesTypeItem"
            }
          },
          "date_judgment_made": {
            "type": "string"
          },
          "date_judgment_sent": {
            "type": "string"
          },
          "judgment_notes": {
            "type": "string"
          },
          "judgement_outcome_doc": {
            "$ref": "#/components/schemas/Document"
          },
          "judgement_details": {
            "$ref": "#/components/schemas/JudgementDetailsType"
          },
          "reconsiderations": {
            "$ref": "#/components/schemas/JudgmentReconsiderationType"
          },
          "Judgement_costs": {
            "$ref": "#/components/schemas/CostsType"
          }
        }
      },
      "JudgementTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/JudgementType"
          }
        }
      },
      "JudgmentReconsiderationType": {
        "type": "object",
        "properties": {
          "reconsideration": {
            "type": "string"
          },
          "reconsiderationDate": {
            "type": "string"
          },
          "reconsiderationOwnInitiative": {
            "type": "string"
          },
          "reconsiderationPartyInitiative": {
            "type": "string"
          },
          "dynamicReconsiderationPartyInitiative": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "reconsiderationDirection": {
            "type": "string"
          },
          "reconsiderationDecision": {
            "type": "string"
          }
        }
      },
      "Judiciary": {
        "type": "object",
        "properties": {
          "roleType": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "authorisationTypes": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "authorisationSubType": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "panelComposition": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PanelComposition"
            }
          },
          "judiciaryPreferences": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PanelPreference"
            }
          },
          "judiciarySpecialisms": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "JurCodesType": {
        "type": "object",
        "properties": {
          "juridictionCodesList": {
            "type": "string"
          },
          "judgmentOutcome": {
            "type": "string"
          },
          "dateNotified": {
            "type": "string"
          },
          "disposalDate": {
            "type": "string"
          },
          "juridictionCodesSubList1": {
            "type": "string"
          }
        }
      },
      "JurCodesTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/JurCodesType"
          }
        }
      },
      "LinkReason": {
        "type": "object",
        "properties": {
          "Reason": {
            "type": "string"
          },
          "OtherDescription": {
            "type": "string"
          }
        }
      },
      "ListingData": {
        "type": "object",
        "properties": {
          "tribunalCorrespondenceAddress": {
            "$ref": "#/components/schemas/Address"
          },
          "tribunalCorrespondenceTelephone": {
            "type": "string"
          },
          "tribunalCorrespondenceFax": {
            "type": "string"
          },
          "tribunalCorrespondenceDX": {
            "type": "string"
          },
          "tribunalCorrespondenceEmail": {
            "type": "string"
          },
          "reportDate": {
            "type": "string"
          },
          "hearingDateType": {
            "type": "string"
          },
          "listingDate": {
            "type": "string"
          },
          "listingDateFrom": {
            "type": "string"
          },
          "listingDateTo": {
            "type": "string"
          },
          "listingVenue": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "listingVenueScotland": {
            "type": "string"
          },
          "listingCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ListingTypeItem"
            }
          },
          "listingVenueOfficeGlas": {
            "type": "string"
          },
          "listingVenueOfficeAber": {
            "type": "string"
          },
          "venueGlasgow": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "venueAberdeen": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "venueDundee": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "venueEdinburgh": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "hearingDocType": {
            "type": "string"
          },
          "hearingDocETCL": {
            "type": "string"
          },
          "roomOrNoRoom": {
            "type": "string"
          },
          "docMarkUp": {
            "type": "string"
          },
          "bfDateCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BFDateTypeItem"
            }
          },
          "clerkResponsible": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "reportType": {
            "type": "string"
          },
          "documentName": {
            "type": "string"
          },
          "showAll": {
            "type": "string"
          },
          "localReportsSummaryHdr": {
            "$ref": "#/components/schemas/AdhocReportType"
          },
          "localReportsSummary": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AdhocReportTypeItem"
            }
          },
          "localReportsSummaryHdr2": {
            "$ref": "#/components/schemas/AdhocReportType"
          },
          "localReportsSummary2": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AdhocReportTypeItem"
            }
          },
          "localReportsDetailHdr": {
            "$ref": "#/components/schemas/AdhocReportType"
          },
          "localReportsDetail": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AdhocReportTypeItem"
            }
          },
          "managingOffice": {
            "type": "string"
          }
        }
      },
      "ListingType": {
        "type": "object",
        "properties": {
          "causeListDate": {
            "type": "string"
          },
          "causeListTime": {
            "type": "string"
          },
          "causeListVenue": {
            "type": "string"
          },
          "elmoCaseReference": {
            "type": "string"
          },
          "jurisdictionCodesList": {
            "type": "string"
          },
          "hearingType": {
            "type": "string"
          },
          "positionType": {
            "type": "string"
          },
          "hearingJudgeName": {
            "type": "string"
          },
          "hearingEEMember": {
            "type": "string"
          },
          "hearingERMember": {
            "type": "string"
          },
          "hearingClerk": {
            "type": "string"
          },
          "hearingDay": {
            "type": "string"
          },
          "claimantName": {
            "type": "string"
          },
          "claimantTown": {
            "type": "string"
          },
          "claimantRepresentative": {
            "type": "string"
          },
          "respondent": {
            "type": "string"
          },
          "respondentTown": {
            "type": "string"
          },
          "respondentRepresentative": {
            "type": "string"
          },
          "estHearingLength": {
            "type": "string"
          },
          "Hearing_panel": {
            "type": "string"
          },
          "Hearing_room": {
            "type": "string"
          },
          "resp_others": {
            "type": "string"
          },
          "Hearing_notes": {
            "type": "string"
          },
          "judicialMediation": {
            "type": "string"
          },
          "hearingFormat": {
            "type": "string"
          },
          "hearingReadingDeliberationMembersChambers": {
            "type": "string"
          }
        }
      },
      "ListingTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/ListingType"
          }
        }
      },
      "Navigation": {
        "type": "object",
        "properties": {
          "conditionOperator": {
            "type": "string"
          },
          "conditionValue": {
            "type": "string"
          },
          "resultValue": {
            "type": "string"
          }
        }
      },
      "NewEmploymentType": {
        "type": "object",
        "properties": {
          "new_job": {
            "type": "string"
          },
          "newly_employed_from": {
            "type": "string"
          },
          "new_pay_before_tax": {
            "type": "string"
          },
          "new_job_pay_interval": {
            "type": "string"
          }
        }
      },
      "NoticeOfChangeAnswers": {
        "type": "object",
        "properties": {
          "respondentName": {
            "type": "string"
          },
          "claimantFirstName": {
            "type": "string"
          },
          "claimantLastName": {
            "type": "string"
          }
        }
      },
      "Organisation": {
        "type": "object",
        "properties": {
          "OrganisationID": {
            "type": "string"
          },
          "OrganisationName": {
            "type": "string"
          }
        }
      },
      "OrganisationDetails": {
        "required": [
          "name",
          "organisationType"
        ],
        "type": "object",
        "properties": {
          "name": {
            "maxLength": 2000,
            "minLength": 0,
            "type": "string"
          },
          "organisationType": {
            "maxLength": 60,
            "minLength": 0,
            "type": "string"
          },
          "cftOrganisationID": {
            "maxLength": 60,
            "minLength": 0,
            "type": "string"
          }
        }
      },
      "OrganisationPolicy": {
        "type": "object",
        "properties": {
          "Organisation": {
            "$ref": "#/components/schemas/Organisation"
          },
          "OrgPolicyReference": {
            "type": "string"
          },
          "OrgPolicyCaseAssignedRole": {
            "type": "string"
          },
          "PrepopulateToUsersOrganisation": {
            "type": "string"
          }
        }
      },
      "PanelComposition": {
        "type": "object",
        "properties": {
          "memberType": {
            "type": "string"
          },
          "count": {
            "type": "integer",
            "format": "int32"
          }
        }
      },
      "PanelPreference": {
        "required": [
          "memberID"
        ],
        "type": "object",
        "properties": {
          "memberID": {
            "maxLength": 70,
            "minLength": 0,
            "type": "string"
          },
          "memberType": {
            "maxLength": 70,
            "minLength": 0,
            "type": "string"
          },
          "requirementType": {
            "type": "string"
          }
        }
      },
      "PanelRequirements": {
        "type": "object",
        "properties": {
          "roleType": {
            "type": "array",
            "items": {
              "maxLength": 70,
              "minLength": 0,
              "type": "string"
            }
          },
          "authorisationSubType": {
            "type": "array",
            "items": {
              "maxLength": 70,
              "minLength": 0,
              "type": "string"
            }
          },
          "panelPreferences": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PanelPreference"
            }
          },
          "panelSpecialisms": {
            "type": "array",
            "items": {
              "maxLength": 70,
              "minLength": 0,
              "type": "string"
            }
          },
          "authorisationTypes": {
            "type": "array",
            "items": {
              "maxLength": 70,
              "minLength": 0,
              "type": "string"
            }
          }
        }
      },
      "PartyDetails": {
        "required": [
          "partyID",
          "partyName",
          "partyRole",
          "partyType"
        ],
        "type": "object",
        "properties": {
          "partyID": {
            "maxLength": 40,
            "minLength": 0,
            "type": "string"
          },
          "partyType": {
            "type": "string"
          },
          "partyRole": {
            "maxLength": 6,
            "minLength": 0,
            "type": "string"
          },
          "individualDetails": {
            "$ref": "#/components/schemas/IndividualDetails"
          },
          "organisationDetails": {
            "$ref": "#/components/schemas/OrganisationDetails"
          },
          "unavailabilityRanges": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/UnavailabilityRanges"
            }
          },
          "partyName": {
            "maxLength": 40,
            "minLength": 0,
            "type": "string"
          },
          "hearingsSubChannel": {
            "type": "string"
          },
          "unavailabilityDOW": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/UnavailabilityDow"
            }
          }
        }
      },
      "PseResponseTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/PseResponseType"
          }
        }
      },
      "ReferralReplyType": {
        "type": "object",
        "properties": {
          "directionTo": {
            "type": "string"
          },
          "replyToEmailAddress": {
            "type": "string"
          },
          "isUrgentReply": {
            "type": "string"
          },
          "directionDetails": {
            "type": "string"
          },
          "replyDocument": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "replyGeneralNotes": {
            "type": "string"
          },
          "replyBy": {
            "type": "string"
          },
          "replyDate": {
            "type": "string"
          },
          "replyDateTime": {
            "type": "string"
          },
          "referralSubject": {
            "type": "string"
          },
          "referralNumber": {
            "type": "string"
          }
        }
      },
      "ReferralReplyTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/ReferralReplyType"
          }
        }
      },
      "ReferralType": {
        "type": "object",
        "properties": {
          "referralNumber": {
            "type": "string"
          },
          "referralHearingDate": {
            "type": "string"
          },
          "referCaseTo": {
            "type": "string"
          },
          "referentEmail": {
            "type": "string"
          },
          "isUrgent": {
            "type": "string"
          },
          "referralSubject": {
            "type": "string"
          },
          "referralSubjectSpecify": {
            "type": "string"
          },
          "referralDetails": {
            "type": "string"
          },
          "referralDocument": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "referralInstruction": {
            "type": "string"
          },
          "referredBy": {
            "type": "string"
          },
          "referralDate": {
            "type": "string"
          },
          "referralStatus": {
            "type": "string"
          },
          "closeReferralGeneralNotes": {
            "type": "string"
          },
          "referralReplyCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ReferralReplyTypeItem"
            }
          },
          "updateReferralCollection": {
            "type": "array",
            "properties": {
              "empty": {
                "type": "boolean"
              }
            },
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemUpdateReferralType"
            }
          },
          "referralSummaryPdf": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          }
        }
      },
      "ReferralTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/ReferralType"
          }
        }
      },
      "RelatedParty": {
        "required": [
          "relatedPartyID",
          "relationshipType"
        ],
        "type": "object",
        "properties": {
          "relatedPartyID": {
            "maxLength": 15,
            "minLength": 0,
            "type": "string"
          },
          "relationshipType": {
            "maxLength": 10,
            "minLength": 0,
            "type": "string"
          }
        }
      },
      "RemovedHearingBundleItem": {
        "type": "object",
        "properties": {
          "bundleName": {
            "type": "string"
          },
          "removedDateTime": {
            "type": "string"
          },
          "removedReason": {
            "type": "string"
          }
        }
      },
      "ReportET4Type": {
        "type": "object",
        "properties": {
          "actioned": {
            "type": "string"
          },
          "bfDate": {
            "type": "string"
          },
          "bfDateCleared": {
            "type": "string"
          },
          "user": {
            "type": "string"
          }
        }
      },
      "ReportET4TypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/ReportET4Type"
          }
        }
      },
      "ReportListingsType": {
        "type": "object",
        "properties": {
          "listedDate": {
            "type": "string"
          },
          "hearingNumber": {
            "type": "string"
          },
          "hearingType": {
            "type": "string"
          },
          "hearingStatus": {
            "type": "string"
          },
          "hearingClerk": {
            "type": "string"
          }
        }
      },
      "ReportListingsTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/ReportListingsType"
          }
        }
      },
      "ReportRespondentType": {
        "type": "object",
        "properties": {
          "et3ReceivedDate": {
            "type": "string"
          },
          "respondentName": {
            "type": "string"
          }
        }
      },
      "ReportRespondentTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/ReportRespondentType"
          }
        }
      },
      "RepresentedTypeC": {
        "type": "object",
        "properties": {
          "representative_id": {
            "type": "string"
          },
          "name_of_representative": {
            "type": "string"
          },
          "name_of_organisation": {
            "type": "string"
          },
          "representative_reference": {
            "type": "string"
          },
          "representative_occupation": {
            "type": "string"
          },
          "representative_occupation_other": {
            "type": "string"
          },
          "representative_address": {
            "$ref": "#/components/schemas/Address"
          },
          "representative_phone_number": {
            "type": "string"
          },
          "representative_mobile_number": {
            "type": "string"
          },
          "representative_email_address": {
            "type": "string"
          },
          "representative_preference": {
            "type": "string"
          },
          "organisationId": {
            "type": "string"
          },
          "myHmctsOrganisation": {
            "$ref": "#/components/schemas/Organisation"
          },
          "hearingContactLanguage": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "contactLanguageQuestion": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "representativeAttendHearing": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "RepresentedTypeR": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "respondentId": {
            "type": "string"
          },
          "dynamic_resp_rep_name": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "resp_rep_name": {
            "type": "string"
          },
          "name_of_representative": {
            "type": "string"
          },
          "name_of_organisation": {
            "type": "string"
          },
          "representative_reference": {
            "type": "string"
          },
          "representative_occupation": {
            "type": "string"
          },
          "representative_occupation_other": {
            "type": "string"
          },
          "representative_address": {
            "$ref": "#/components/schemas/Address"
          },
          "representative_phone_number": {
            "type": "string"
          },
          "representative_mobile_number": {
            "type": "string"
          },
          "representative_email_address": {
            "type": "string"
          },
          "representative_preference": {
            "type": "string"
          },
          "respondentOrganisation": {
            "$ref": "#/components/schemas/Organisation"
          },
          "myHmctsYesNo": {
            "type": "string"
          },
          "nonMyHmctsOrganisationId": {
            "type": "string"
          }
        }
      },
      "RepresentedTypeRItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/RepresentedTypeR"
          }
        }
      },
      "RespondNotificationType": {
        "type": "object",
        "properties": {
          "state": {
            "type": "string"
          },
          "isClaimantResponseDue": {
            "type": "string"
          },
          "respondNotificationDate": {
            "type": "string"
          },
          "respondNotificationTitle": {
            "type": "string"
          },
          "respondNotificationAdditionalInfo": {
            "type": "string"
          },
          "respondNotificationUploadDocument": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "respondNotificationCmoOrRequest": {
            "type": "string"
          },
          "respondNotificationResponseRequired": {
            "type": "string"
          },
          "respondNotificationWhoRespond": {
            "type": "string"
          },
          "respondNotificationCaseManagementMadeBy": {
            "type": "string"
          },
          "respondNotificationRequestMadeBy": {
            "type": "string"
          },
          "respondNotificationFullName": {
            "type": "string"
          },
          "respondNotificationPartyToNotify": {
            "type": "string"
          }
        }
      },
      "RespondentTse": {
        "type": "object",
        "properties": {
          "contactApplicationType": {
            "type": "string"
          },
          "contactApplicationText": {
            "type": "string"
          },
          "contactApplicationFile": {
            "$ref": "#/components/schemas/UploadedDocumentType"
          },
          "copyToOtherPartyYesOrNo": {
            "type": "string"
          },
          "copyToOtherPartyText": {
            "type": "string"
          }
        }
      },
      "RestrictedReportingType": {
        "type": "object",
        "properties": {
          "dynamicRequestedBy": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "requestedBy": {
            "type": "string"
          },
          "dateCeased": {
            "type": "string"
          },
          "imposed": {
            "type": "string"
          },
          "rule503b": {
            "type": "string"
          },
          "excludedRegister": {
            "type": "string"
          },
          "startDate": {
            "type": "string"
          },
          "excludedNames": {
            "type": "string"
          },
          "deletedPhyRegister": {
            "type": "string"
          }
        }
      },
      "ScreenNavigation": {
        "type": "object",
        "properties": {
          "conditionKey": {
            "type": "string"
          },
          "navigation": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Navigation"
            }
          },
          "screenName": {
            "type": "string"
          }
        }
      },
      "SearchCriteria": {
        "type": "object",
        "properties": {
          "OtherCaseReferences": {
            "type": "array",
            "properties": {
              "empty": {
                "type": "boolean"
              }
            },
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemString"
            }
          },
          "SearchParties": {
            "type": "array",
            "properties": {
              "empty": {
                "type": "boolean"
              }
            },
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemSearchParty"
            }
          }
        }
      },
      "SearchParty": {
        "type": "object",
        "properties": {
          "DateOfBirth": {
            "type": "string"
          },
          "DateOfDeath": {
            "type": "string"
          },
          "PostCode": {
            "type": "string"
          },
          "AddressLine1": {
            "type": "string"
          },
          "EmailAddress": {
            "type": "string"
          },
          "Name": {
            "type": "string"
          }
        }
      },
      "SendNotificationType": {
        "type": "object",
        "properties": {
          "number": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "sendNotificationTitle": {
            "type": "string"
          },
          "sendNotificationLetter": {
            "type": "string"
          },
          "sendNotificationUploadDocument": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "sendNotificationSubject": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "sendNotificationAdditionalInfo": {
            "type": "string"
          },
          "sendNotificationNotify": {
            "type": "string"
          },
          "sendNotificationSelectHearing": {
            "$ref": "#/components/schemas/DynamicFixedListType"
          },
          "sendNotificationCaseManagement": {
            "type": "string"
          },
          "sendNotificationResponseTribunal": {
            "type": "string"
          },
          "sendNotificationWhoCaseOrder": {
            "type": "string"
          },
          "sendNotificationSelectParties": {
            "type": "string"
          },
          "sendNotificationFullName": {
            "type": "string"
          },
          "sendNotificationFullName2": {
            "type": "string"
          },
          "sendNotificationDecision": {
            "type": "string"
          },
          "sendNotificationDetails": {
            "type": "string"
          },
          "sendNotificationRequestMadeBy": {
            "type": "string"
          },
          "sendNotificationEccQuestion": {
            "type": "string"
          },
          "sendNotificationWhoMadeJudgement": {
            "type": "string"
          },
          "respondCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PseResponseTypeItem"
            }
          },
          "respondStoredCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PseResponseTypeItem"
            }
          },
          "respondNotificationTypeCollection": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemRespondNotificationType"
            }
          },
          "notificationState": {
            "type": "string"
          },
          "sendNotificationSubjectString": {
            "type": "string"
          },
          "sendNotificationResponseTribunalTable": {
            "type": "string"
          },
          "sendNotificationResponsesCount": {
            "type": "string"
          },
          "sendNotificationSentBy": {
            "type": "string"
          },
          "notificationSentFrom": {
            "type": "string"
          }
        }
      },
      "SendNotificationTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/SendNotificationType"
          }
        }
      },
      "TTL": {
        "type": "object",
        "properties": {
          "SystemTTL": {
            "type": "string",
            "format": "date"
          },
          "OverrideTTL": {
            "type": "string",
            "format": "date"
          },
          "Suspended": {
            "type": "string"
          }
        }
      },
      "TaskListCheckType": {
        "type": "object",
        "properties": {
          "personalDetailsCheck": {
            "type": "string"
          },
          "employmentAndRespondentCheck": {
            "type": "string"
          },
          "claimDetailsCheck": {
            "type": "string"
          }
        }
      },
      "TriageQuestions": {
        "type": "object",
        "properties": {
          "postcode": {
            "type": "string"
          },
          "claimJurisdiction": {
            "type": "string"
          },
          "claimantRepresentedQuestion": {
            "type": "string"
          },
          "caseType": {
            "type": "string"
          },
          "acasMultiple": {
            "type": "string"
          },
          "validNoAcasReason": {
            "type": "string"
          },
          "typesOfClaim": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "TseAdminRecordDecisionType": {
        "type": "object",
        "properties": {
          "date": {
            "type": "string"
          },
          "enterNotificationTitle": {
            "type": "string"
          },
          "decision": {
            "type": "string"
          },
          "decisionDetails": {
            "type": "string"
          },
          "typeOfDecision": {
            "type": "string"
          },
          "isResponseRequired": {
            "type": "string"
          },
          "selectPartyRespond": {
            "type": "string"
          },
          "additionalInformation": {
            "type": "string"
          },
          "responseRequiredDoc": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GenericTypeItemDocumentType"
            }
          },
          "decisionMadeBy": {
            "type": "string"
          },
          "decisionMadeByFullName": {
            "type": "string"
          },
          "selectPartyNotify": {
            "type": "string"
          },
          "decisionState": {
            "type": "string"
          }
        }
      },
      "TseAdminRecordDecisionTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/TseAdminRecordDecisionType"
          }
        }
      },
      "TseRespondTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/TseRespondType"
          }
        }
      },
      "UnavailabilityDow": {
        "type": "object",
        "properties": {
          "DOW": {
            "type": "string"
          },
          "DOWUnavailabilityType": {
            "type": "string"
          }
        }
      },
      "UnavailabilityRanges": {
        "required": [
          "unavailableFromDate",
          "unavailableToDate"
        ],
        "type": "object",
        "properties": {
          "unavailableFromDate": {
            "type": "string",
            "format": "date"
          },
          "unavailableToDate": {
            "type": "string",
            "format": "date"
          },
          "unavailabilityType": {
            "type": "string"
          }
        }
      },
      "UpdateReferralType": {
        "type": "object",
        "properties": {
          "updateReferralNumber": {
            "type": "string"
          },
          "updateReferralHearingDate": {
            "type": "string"
          },
          "updateReferCaseTo": {
            "type": "string"
          },
          "updateReferentEmail": {
            "type": "string"
          },
          "updateIsUrgent": {
            "type": "string"
          },
          "updateReferralSubject": {
            "type": "string"
          },
          "updateReferralSubjectSpecify": {
            "type": "string"
          },
          "updateReferralDetails": {
            "type": "string"
          },
          "updateReferralDocument": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentTypeItem"
            }
          },
          "updateReferralInstruction": {
            "type": "string"
          },
          "updateReferredBy": {
            "type": "string"
          },
          "updateReferralDate": {
            "type": "string"
          }
        }
      },
      "VettingJurCodesTypeItem": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "value": {
            "$ref": "#/components/schemas/VettingJurisdictionCodesType"
          }
        }
      },
      "VettingJurisdictionCodesType": {
        "type": "object",
        "properties": {
          "et1VettingJurCodeList": {
            "type": "string"
          }
        }
      },
      "Vocabulary": {
        "type": "object",
        "properties": {
          "word1": {
            "type": "string"
          }
        }
      }
    },
    "securitySchemes": {
      "apiKeyHeader": {
        "type": "apiKey",
        "name": "Ocp-Apim-Subscription-Key",
        "in": "header"
      },
      "apiKeyQuery": {
        "type": "apiKey",
        "name": "auth-token",
        "in": "header"
      }
    }
  }
}
