{"openapi":"3.1.0","info":{"description":"pcs api","license":{"name":"MIT","url":"https://opensource.org/licenses/MIT"},"title":"pcs api","version":"v0.0.1"},"externalDocs":{"description":"README","url":"https://github.com/hmcts/pcs-api"},"servers":[{"url":"http://localhost","description":"Generated server url"}],"security":[{"AuthorizationToken":[],"ServiceAuthorization":[]}],"tags":[{"description":"Retrieve claims associated with the authenticated citizen","name":"Citizen Claim List"},{"description":"Validate access code and link user ID to party","name":"Access Code Validation"}],"paths":{"/":{"get":{"operationId":"welcome","responses":{"200":{"content":{"*/*":{"schema":{"type":"string"}}},"description":"OK"}},"tags":["root-controller"]}},"/cases/citizen-claims":{"get":{"description":"Returns all possession claims where the authenticated user is linked as a defendant","operationId":"getDefendantClaims","parameters":[{"description":"Bearer token for user authentication","in":"header","name":"Authorization","required":true,"schema":{"type":"string"}},{"description":"Service-to-Service (S2S) authorization token","in":"header","name":"ServiceAuthorization","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ClaimSummary"}}}},"description":"Claims retrieved successfully"},"401":{"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ClaimSummary"}}}},"description":"Invalid access token"},"403":{"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ClaimSummary"}}}},"description":"Invalid Service Authorization"}},"security":[{"AuthorizationToken":[]},{"ServiceAuthorization":[]}],"summary":"Get all claims against the authenticated citizen","tags":["Citizen Claim List"]}},"/cases/{caseReference}/validate-access-code":{"post":{"description":"Stores the user's IDAM user ID for the matching party","operationId":"validateAccessCode","parameters":[{"description":"The 12-digit case reference number","in":"path","name":"caseReference","required":true,"schema":{"type":"integer","format":"int64"}},{"description":"Bearer token for user authentication","in":"header","name":"Authorization","required":true,"schema":{"type":"string"}},{"description":"Service-to-Service (S2S) authorization token","in":"header","name":"ServiceAuthorization","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ValidateAccessCodeRequest"}}},"required":true},"responses":{"200":{"description":"Successful validation and linking"},"400":{"description":"Invalid access code for this case"},"401":{"description":"Invalid access token"},"403":{"description":"Invalid Service Authorization"},"404":{"description":"Case not found or party does not belong to this case"},"409":{"description":"Access code already used by another user"}},"security":[{"AuthorizationToken":[]},{"ServiceAuthorization":[]}],"summary":"Validate access code and link user to a case","tags":["Access Code Validation"]}},"/hearing/":{"post":{"operationId":"createHearing","parameters":[{"in":"header","name":"Authorization","required":true,"schema":{"type":"string"}},{"in":"header","name":"ServiceAuthorization","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HearingRequest"}}},"required":true},"responses":{"200":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/HearingResponse"}}},"description":"OK"}},"tags":["Hearings"]}},"/hearing/{id}":{"delete":{"operationId":"deleteHearing","parameters":[{"in":"header","name":"Authorization","required":true,"schema":{"type":"string"}},{"in":"header","name":"ServiceAuthorization","required":true,"schema":{"type":"string"}},{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DeleteHearingRequest"}}},"required":true},"responses":{"200":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/HearingResponse"}}},"description":"OK"}},"tags":["Hearings"]},"get":{"operationId":"getHearing","parameters":[{"in":"header","name":"Authorization","required":true,"schema":{"type":"string"}},{"in":"header","name":"ServiceAuthorization","required":true,"schema":{"type":"string"}},{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/GetHearingsResponse"}}},"description":"OK"}},"tags":["Hearings"]},"put":{"operationId":"updateHearing","parameters":[{"in":"header","name":"Authorization","required":true,"schema":{"type":"string"}},{"in":"header","name":"ServiceAuthorization","required":true,"schema":{"type":"string"}},{"in":"path","name":"id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateHearingRequest"}}},"required":true},"responses":{"200":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/HearingResponse"}}},"description":"OK"}},"tags":["Hearings"]}},"/payment-update":{"put":{"operationId":"processPaymentCallback","parameters":[{"in":"header","name":"ServiceAuthorization","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"examples":{"Paid service request callback":{"description":"Paid service request callback","value":{"service_request_reference":"2023-1692266328473","ccd_case_number":"1692266325752226","service_request_amount":2500,"service_request_status":"Paid","payment":{"payment_amount":2500,"payment_reference":"RC-1692-2665-9206-3000","payment_method":"payment by account","case_reference":"098DC868","account_number":"PBA0088311"}}}},"schema":{"type":"string"}}},"required":true},"responses":{"204":{"description":"Payment callback processed successfully. No response body is returned."}},"summary":"This endpoint is invoked by the CCPay service based on the service request callback","tags":["payment-call-back-controller"]}},"/payment/card-payment/{internalReference}/status":{"get":{"operationId":"getCardPaymentStatus","parameters":[{"in":"header","name":"ServiceAuthorization","required":true,"schema":{"type":"string"}},{"in":"path","name":"internalReference","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CardPaymentStatusResponse"}}},"description":"Payment status found"},"403":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CardPaymentStatusResponse"}}},"description":"Forbidden - Invalid or missing service authorization token"},"404":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CardPaymentStatusResponse"}}},"description":"Payment status not found"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CardPaymentStatusResponse"}}},"description":"Internal server error"}},"summary":"Get status of a card payment","tags":["Payment"]}},"/payment/service-request/{serviceRequestReference}/card-payment":{"post":{"operationId":"createPaymentRequest","parameters":[{"in":"header","name":"ServiceAuthorization","required":true,"schema":{"type":"string"}},{"in":"path","name":"serviceRequestReference","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"examples":{"Create payment request":{"description":"Create payment request","value":{"amount":300.99,"language":"English","returnUrl":"https://some-frontend/payment-return-url"}}},"schema":{"$ref":"#/components/schemas/CreateCardPaymentRequest"}}},"required":true},"responses":{"201":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/CreateCardPaymentResponse"}}},"description":"Payment request created successfully"},"403":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/CreateCardPaymentResponse"}}},"description":"Forbidden - Invalid or missing service authorization token"},"500":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/CreateCardPaymentResponse"}}},"description":"Internal server error"}},"summary":"Create a payment request","tags":["Payment"]}},"/testing-support/access-codes/{caseReference}":{"get":{"operationId":"getAccessCodes_1","parameters":[{"description":"Service-to-Service (S2S) authorization token","example":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...","in":"header","name":"ServiceAuthorization","required":true,"schema":{"type":"string"}},{"description":"Case reference to find pins for","in":"path","name":"caseReference","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"content":{"*/*":{"schema":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/Party"}}}},"description":"Pins Returned"},"403":{"content":{"*/*":{"schema":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/Party"}}}},"description":"Forbidden - Invalid or missing service authorization token"},"404":{"content":{"*/*":{"schema":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/Party"}}}},"description":"Case not found"},"500":{"content":{"*/*":{"schema":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/Party"}}}},"description":"Internal server error"}},"summary":"Get all pins associated with a case","tags":["Testing Support"]}},"/testing-support/claim-eligibility":{"get":{"description":"Checks the eligibility for a given property postcode, and returns a payload with an eligibility status.","operationId":"getPostcodeEligibility","parameters":[{"description":"Service-to-Service (S2S) authorization token","example":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...","in":"header","name":"ServiceAuthorization","required":true,"schema":{"type":"string"}},{"description":"Property postcode to check eligibility for","in":"query","name":"postcode","required":true,"schema":{"type":"string"}},{"description":"Legislative country for property, (for use with cross border postcodes)","in":"query","name":"legislativeCountry","required":false,"schema":{"type":"string","enum":["England","Northern Ireland","Scotland","Wales","Isle of Man","Channel Islands"]}}],"responses":{"200":{"content":{"application/json":{"examples":{"Eligible postcode":{"description":"Result for a match with an eligible postcode","value":{"status":"ELIGIBLE","epimsId":12345,"legislativeCountry":"England"}},"Ineligible postcode":{"description":"Result for a match with an ineligible postcode","value":{"status":"NOT_ELIGIBLE","epimsId":45678,"legislativeCountry":"Wales"}},"Multiple matches found for postcode":{"description":"Multiple matches found in the DB for the provided postcode.","value":{"status":"MULTIPLE_MATCHES_FOUND"}},"No match found for postcode":{"description":"No match found in the DB for the provided postcode.","value":{"status":"NO_MATCH_FOUND"}},"Postcode that is cross-border":{"description":"Result for a match with a cross border postcode, that needs the legistalative country to be specified as well","value":{"status":"LEGISLATIVE_COUNTRY_REQUIRED","legislativeCountries":["England","Wales"]}}}}},"description":"Eligibilty check completed successfully"},"400":{"description":"Missing or blank postcode query parameter"},"401":{"description":"Unauthorized - Invalid or missing authorization token"},"403":{"description":"Forbidden - Invalid or missing service authorization token"},"500":{"description":"Internal server error"}},"summary":"Checks the eligibility for a given property postcode","tags":["Testing Support"]}},"/testing-support/counterclaim/{counterClaimId}/issue":{"post":{"operationId":"issueAndSchedule","parameters":[{"in":"path","name":"counterClaimId","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"content":{"*/*":{"schema":{"type":"string","format":"uuid"}}},"description":"OK"}},"tags":["counter-claim-form-testing-support-controller"]}},"/testing-support/db-scheduler-test":{"post":{"description":"Schedules a Hello World task to be executed after a specified delay. This endpoint is used for testing the database scheduler functionality.","operationId":"scheduleHelloWorldTask","parameters":[{"description":"Delay in seconds before task execution (default: 1)","example":5,"in":"query","name":"delaySeconds","required":false,"schema":{"type":"integer","format":"int32","default":1}},{"description":"Bearer token for user authentication (default: DummyId)","example":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...","in":"header","name":"Authorization","required":false,"schema":{"type":"string","default":"DummyId"}},{"description":"Service-to-Service (S2S) authorization token","example":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...","in":"header","name":"ServiceAuthorization","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"*/*":{"schema":{"type":"string"}}},"description":"Task scheduled successfully"},"401":{"content":{"*/*":{"schema":{"type":"string"}}},"description":"Unauthorized - Invalid or missing authorization token"},"403":{"content":{"*/*":{"schema":{"type":"string"}}},"description":"Forbidden - Invalid or missing service authorization token"},"500":{"content":{"*/*":{"schema":{"type":"string"}}},"description":"Internal server error"}},"summary":"Schedule a Hello World task","tags":["Testing Support"]}},"/testing-support/fee-payment-info/{caseReference}":{"get":{"operationId":"getFeePaymentInfo","parameters":[{"description":"Service-to-Service (S2S) authorization token","example":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...","in":"header","name":"ServiceAuthorization","required":true,"schema":{"type":"string"}},{"description":"Case reference to find fee payment details for","in":"path","name":"caseReference","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/FeePaymentEntity"}}}},"description":"OK"}},"tags":["Testing Support"]}},"/testing-support/link-defendant-solicitor-to-party/{caseReference}/{partyId}":{"post":{"operationId":"linkDefendantSolicitorToParty","parameters":[{"description":"The 12-digit case reference number","in":"path","name":"caseReference","required":true,"schema":{"type":"integer","format":"int64"}},{"description":"Id of Party to link","in":"path","name":"partyId","required":true,"schema":{"type":"string"}},{"in":"header","name":"Authorization","required":true,"schema":{"type":"string"}},{"in":"header","name":"ServiceAuthorization","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Successful assignment"},"401":{"description":"Invalid access token"},"412":{"description":"Feature not enabled"}},"summary":"Link a defendant solicitor to a party for a case","tags":["Testing Support"]}},"/testing-support/party/{partyId}/email-address":{"post":{"operationId":"setPartyEmail","parameters":[{"in":"header","name":"ServiceAuthorization","required":true,"schema":{"type":"string"}},{"in":"path","name":"partyId","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PartyEmail"}}},"required":true},"responses":{"200":{"description":"Email set successfully"},"400":{"description":"Bad request"},"401":{"content":{"*/*":{"schema":{"type":"string"}}},"description":"Unauthorized - Invalid or missing authorization token"},"404":{"content":{"*/*":{"schema":{"type":"string"}}},"description":"Party not found"},"500":{"content":{"*/*":{"schema":{"type":"string"}}},"description":"Internal server error"}},"summary":"Set a party email address and contact preference","tags":["Testing Support"]}},"/testing-support/pins/{caseReference}":{"get":{"operationId":"getAccessCodes","parameters":[{"description":"Service-to-Service (S2S) authorization token","example":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...","in":"header","name":"ServiceAuthorization","required":true,"schema":{"type":"string"}},{"description":"Case reference to find pins for","in":"path","name":"caseReference","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"content":{"*/*":{"schema":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/Party"}}}},"description":"Pins Returned"},"403":{"content":{"*/*":{"schema":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/Party"}}}},"description":"Forbidden - Invalid or missing service authorization token"},"404":{"content":{"*/*":{"schema":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/Party"}}}},"description":"Case not found"},"500":{"content":{"*/*":{"schema":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/Party"}}}},"description":"Internal server error"}},"summary":"Get all pins associated with a case","tags":["Testing Support"]}},"/testing-support/send-defendant-response-emails":{"post":{"operationId":"sendDefendantResponseEmails","parameters":[{"in":"header","name":"Authorization","required":false,"schema":{"type":"string","default":"DummyId"}},{"in":"header","name":"ServiceAuthorization","required":true,"schema":{"type":"string"}},{"in":"query","name":"defendantResponseId","required":true,"schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EmailNotificationResponse"}}}},"description":"OK"}},"tags":["notify-controller"]}},"/testing-support/{legislativeCountry}/create-case":{"post":{"description":"Testing support endpoint that orchestrates the CCD calls required to create a case.","operationId":"createPCSCaseViaTestingSupport","parameters":[{"in":"path","name":"legislativeCountry","required":true,"schema":{"type":"string"}},{"in":"header","name":"Authorization","required":true,"schema":{"type":"string"}},{"in":"header","name":"ServiceAuthorization","required":true,"schema":{"type":"string"}},{"description":"When true, synchronously issue the case (allocate court location, set issued date) and generate the defendant access codes, so a test can read the PIN immediately without driving payment or waiting for the async scheduler.","in":"query","name":"issueAndGenerateAccessCodes","required":false,"schema":{"type":"boolean","default":false}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/JsonNode"}}}},"responses":{"201":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":{}}}},"description":"Case created successfully"},"400":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":{}}}},"description":"Bad request - invalid payload"},"401":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":{}}}},"description":"Unauthorized - Invalid or missing authorization token"},"403":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":{}}}},"description":"Forbidden - Invalid or missing service authorization token"},"500":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":{}}}},"description":"Internal server error"}},"summary":"Create a PCS case via testing support","tags":["Testing Support"]}}},"components":{"schemas":{"AddressEntity":{"type":"object","properties":{"addressLine1":{"type":"string"},"addressLine2":{"type":"string"},"addressLine3":{"type":"string"},"country":{"type":"string"},"county":{"type":"string"},"id":{"type":"integer","format":"int32"},"postTown":{"type":"string"},"postcode":{"type":"string"}}},"AddressUK":{"type":"object","properties":{"AddressLine1":{"type":"string"},"AddressLine2":{"type":"string"},"AddressLine3":{"type":"string"},"Country":{"type":"string"},"County":{"type":"string"},"PostCode":{"type":"string"},"PostTown":{"type":"string"}}},"AsbProhibitedConductEntity":{"type":"object","properties":{"antisocialBehaviour":{"type":"string","enum":["YES","NO"]},"antisocialBehaviourDetails":{"type":"string"},"claim":{"$ref":"#/components/schemas/ClaimEntity"},"claimingStandardContract":{"type":"string","enum":["YES","NO"]},"claimingStandardContractDetails":{"type":"string"},"id":{"type":"integer","format":"int32"},"illegalPurposes":{"type":"string","enum":["YES","NO"]},"illegalPurposesDetails":{"type":"string"},"otherProhibitedConduct":{"type":"string","enum":["YES","NO"]},"otherProhibitedConductDetails":{"type":"string"},"periodicContractAgreed":{"type":"string","enum":["YES","NO"]},"periodicContractDetails":{"type":"string"}}},"Attendee":{"type":"object","properties":{"hearingSubChannel":{"type":"string"},"partyID":{"type":"string"}}},"BaseCaseFlag":{"type":"object","properties":{"dateTimeCreated":{"type":"string","format":"date-time"},"dateTimeModified":{"type":"string","format":"date-time"},"defaultStatus":{"type":"string"},"flagComment":{"type":"string"},"flagCommentWelsh":{"type":"string"},"flagRefData":{},"flagUpdateComment":{"type":"string"},"id":{"type":"string","format":"uuid"},"otherDescription":{"type":"string"},"otherDescriptionWelsh":{"type":"string"},"paths":{"type":"string"},"subTypeKey":{"type":"string"},"subTypeValue":{"type":"string"},"subTypeValueWelsh":{"type":"string"}}},"CardPaymentStatusResponse":{"type":"object","properties":{"status":{"type":"string"}}},"CaseCategory":{"type":"object","properties":{"categoryParent":{"type":"string"},"categoryType":{"type":"string"},"categoryValue":{"type":"string"}}},"CaseDetails":{"type":"object","properties":{"caseAdditionalSecurityFlag":{"type":"boolean"},"caseCategories":{"type":"array","items":{"$ref":"#/components/schemas/CaseCategory"}},"caseDeepLink":{"type":"string"},"caseInterpreterRequiredFlag":{"type":"boolean"},"caseManagementLocationCode":{"type":"string"},"caseRef":{"type":"string"},"caseSLAStartDate":{"type":"string","format":"date"},"caserestrictedFlag":{"type":"boolean"},"externalCaseReference":{"type":"string"},"hmctsInternalCaseName":{"type":"string"},"hmctsServiceCode":{"type":"string"},"publicCaseName":{"type":"string"}}},"CaseFlagEntity":{"type":"object","properties":{"dateTimeCreated":{"type":"string","format":"date-time"},"dateTimeModified":{"type":"string","format":"date-time"},"defaultStatus":{"type":"string"},"flagComment":{"type":"string"},"flagCommentWelsh":{"type":"string"},"flagRefData":{"$ref":"#/components/schemas/FlagRefDataEntity"},"flagUpdateComment":{"type":"string"},"id":{"type":"string","format":"uuid"},"otherDescription":{"type":"string"},"otherDescriptionWelsh":{"type":"string"},"paths":{"type":"string"},"pcsCase":{"$ref":"#/components/schemas/PcsCaseEntity"},"subTypeKey":{"type":"string"},"subTypeValue":{"type":"string"},"subTypeValueWelsh":{"type":"string"}}},"CaseHearing":{"type":"object","properties":{"hearingChannels":{"type":"array","items":{"type":"string"}},"hearingDaySchedule":{"type":"array","items":{"$ref":"#/components/schemas/HearingDaySchedule"}},"hearingGroupRequestId":{"type":"string"},"hearingID":{"type":"integer","format":"int64"},"hearingIsLinkedFlag":{"type":"boolean"},"hearingListingStatus":{"type":"string"},"hearingRequestDateTime":{"type":"string","format":"date-time"},"hearingType":{"type":"string"},"hmcStatus":{"type":"string"},"lastResponseReceivedDateTime":{"type":"string","format":"date-time"},"listAssistCaseStatus":{"type":"string"},"requestVersion":{"type":"integer","format":"int32"}}},"CaseLinkEntity":{"type":"object","properties":{"ccdListId":{"type":"string"},"id":{"type":"integer","format":"int32"},"linkedCaseReference":{"type":"integer","format":"int64"},"pcsCase":{"$ref":"#/components/schemas/PcsCaseEntity"},"reasons":{"type":"array","items":{"$ref":"#/components/schemas/CaseLinkReasonEntity"}}}},"CaseLinkReasonEntity":{"type":"object","properties":{"caseLink":{"$ref":"#/components/schemas/CaseLinkEntity"},"id":{"type":"string","format":"uuid"},"reasonCode":{"type":"string"}}},"CaseNoteEntity":{"type":"object","properties":{"createdBy":{"type":"string"},"createdOn":{"type":"string","format":"date-time"},"id":{"type":"integer","format":"int32"},"note":{"type":"string"},"pcsCase":{}}},"CasePartyFlagEntity":{"type":"object","properties":{"dateTimeCreated":{"type":"string","format":"date-time"},"dateTimeModified":{"type":"string","format":"date-time"},"defaultStatus":{"type":"string"},"flagComment":{"type":"string"},"flagCommentWelsh":{"type":"string"},"flagRefData":{"$ref":"#/components/schemas/FlagRefDataEntity"},"flagUpdateComment":{"type":"string"},"id":{"type":"string","format":"uuid"},"otherDescription":{"type":"string"},"otherDescriptionWelsh":{"type":"string"},"party":{"$ref":"#/components/schemas/PartyEntity"},"paths":{"type":"string"},"subTypeKey":{"type":"string"},"subTypeValue":{"type":"string"},"subTypeValueWelsh":{"type":"string"}}},"CaseReviewDateEntity":{"type":"object","properties":{"date":{"type":"string","format":"date"},"description":{"type":"string"},"id":{"type":"integer","format":"int32"},"pcsCase":{},"reason":{"type":"string","enum":["UNLESS_ORDER","STAY_CASE","LIFT_STAY","DISMISS_CASE","GENERAL_ORDER","OTHER"]}}},"ClaimDocumentEntity":{"type":"object","properties":{"claim":{"$ref":"#/components/schemas/ClaimEntity"},"document":{"$ref":"#/components/schemas/DocumentEntity"},"id":{"$ref":"#/components/schemas/ClaimDocumentId"}}},"ClaimDocumentId":{"type":"object","properties":{"claimId":{"type":"string","format":"uuid"},"documentId":{"type":"string","format":"uuid"}}},"ClaimEntity":{"type":"object","properties":{"additionalDefendants":{"type":"string","enum":["YES","NO"]},"additionalDocsProvided":{"type":"string","enum":["YES","NO"]},"additionalReasons":{"type":"string"},"additionalReasonsProvided":{"type":"string","enum":["YES","NO"]},"additionalUnderlesseesOrMortgagees":{"type":"string","enum":["YES","NO"]},"againstTrespassers":{"type":"string","enum":["YES","NO"]},"asbProhibitedConductEntity":{"$ref":"#/components/schemas/AsbProhibitedConductEntity"},"claimDocuments":{"type":"array","items":{"$ref":"#/components/schemas/ClaimDocumentEntity"}},"claimFormDocument":{"$ref":"#/components/schemas/DocumentEntity"},"claimGrounds":{"type":"array","items":{"$ref":"#/components/schemas/ClaimGroundEntity"},"uniqueItems":true},"claimIssuedDate":{"type":"string","format":"date-time"},"claimParties":{"type":"array","items":{"$ref":"#/components/schemas/ClaimPartyEntity"}},"claimSubmittedDate":{"type":"string","format":"date-time"},"claimantCircumstances":{"type":"string"},"claimantCircumstancesProvided":{"type":"string","enum":["YES","NO"]},"claimantType":{"type":"string","enum":["PRIVATE_LANDLORD","PROVIDER_OF_SOCIAL_HOUSING","COMMUNITY_LANDLORD","MORTGAGE_LENDER","OTHER"]},"defendantCircumstances":{"type":"string"},"defendantCircumstancesProvided":{"type":"string","enum":["YES","NO"]},"dueToRentArrears":{"type":"string","enum":["Yes","No"]},"electricalInstallationConditionProvided":{"type":"string","enum":["YES","NO"]},"energyPerformanceCertificateProvided":{"type":"string","enum":["YES","NO"]},"enforcementOrders":{"type":"array","items":{"$ref":"#/components/schemas/EnforcementOrderEntity"},"uniqueItems":true},"feePayments":{"type":"array","items":{"$ref":"#/components/schemas/FeePaymentEntity"}},"gasSafetyReportProvided":{"type":"string","enum":["YES","NO"]},"genAppExpected":{"type":"string","enum":["YES","NO"]},"id":{"type":"string","format":"uuid"},"isExemptLandlord":{"type":"string","enum":["YES","NO"]},"languageUsed":{"type":"string","enum":["ENGLISH","WELSH","ENGLISH_AND_WELSH"]},"mediationAttempted":{"type":"string","enum":["YES","NO"]},"noElectricalInstallationConditionReason":{"type":"string"},"noEnergyPerformanceCertificateReason":{"type":"string"},"noGasSafetyReportReason":{"type":"string"},"noticeOfPossession":{"$ref":"#/components/schemas/NoticeOfPossessionEntity"},"pcsCase":{"$ref":"#/components/schemas/PcsCaseEntity"},"possessionAlternativesEntity":{"$ref":"#/components/schemas/PossessionAlternativesEntity"},"preActionProtocolFollowed":{"type":"string","enum":["YES","NO"]},"preActionProtocolIncompleteExplanation":{"type":"string"},"rentArrears":{"$ref":"#/components/schemas/RentArrearsEntity"},"settlementAttempted":{"type":"string","enum":["YES","NO"]},"statementOfTruth":{"$ref":"#/components/schemas/StatementOfTruthEntity"},"underlesseeOrMortgagee":{"type":"string","enum":["YES","NO"]}}},"ClaimGroundEntity":{"type":"object","properties":{"category":{"type":"string","enum":["ASSURED_MANDATORY","ASSURED_DISCRETIONARY","ASSURED_OTHER","SECURE_OR_FLEXIBLE_DISCRETIONARY","SECURE_OR_FLEXIBLE_MANDATORY","SECURE_OR_FLEXIBLE_ANTISOCIAL","SECURE_OR_FLEXIBLE_MANDATORY_ALT","SECURE_OR_FLEXIBLE_DISCRETIONARY_ALT","INTRODUCTORY_DEMOTED_OTHER","INTRODUCTORY_DEMOTED_OTHER_NO_GROUNDS","WALES_STANDARD_OTHER_MANDATORY","WALES_STANDARD_OTHER_DISCRETIONARY","WALES_STANDARD_OTHER_ESTATE_MANAGEMENT","WALES_SECURE_MANDATORY","WALES_SECURE_DISCRETIONARY","WALES_SECURE_ESTATE_MANAGEMENT"]},"claim":{"$ref":"#/components/schemas/ClaimEntity"},"code":{"type":"string"},"description":{"type":"string"},"id":{"type":"string","format":"uuid"},"isRentArrears":{"type":"boolean"},"reason":{"type":"string"}}},"ClaimPartyEntity":{"type":"object","properties":{"claim":{"$ref":"#/components/schemas/ClaimEntity"},"id":{"$ref":"#/components/schemas/ClaimPartyId"},"party":{"$ref":"#/components/schemas/PartyEntity"},"rank":{"type":"integer","format":"int32"},"role":{"type":"string","enum":["CLAIMANT","DEFENDANT","UNDERLESSEE_OR_MORTGAGEE"]}}},"ClaimPartyId":{"type":"object","properties":{"claimId":{"type":"string","format":"uuid"},"partyId":{"type":"string","format":"uuid"}}},"ClaimPartyLegalRepresentativeEntity":{"type":"object","properties":{"active":{"type":"string","enum":["Yes","No"]},"endDate":{"type":"string","format":"date-time"},"id":{"$ref":"#/components/schemas/LegalRepresentativePartyId"},"legalRepresentative":{"$ref":"#/components/schemas/LegalRepresentativeEntity"},"party":{"$ref":"#/components/schemas/PartyEntity"},"startDate":{"type":"string","format":"date-time"}}},"ClaimSummary":{"type":"object","properties":{"caseReference":{"type":"string"},"claimantName":{"type":"string"},"propertyPostcode":{"type":"string"}}},"ContactPreferencesEntity":{"type":"object","properties":{"contactByEmail":{"type":"string","enum":["YES","NO"]},"contactByPhone":{"type":"string","enum":["YES","NO"]},"contactByPost":{"type":"string","enum":["YES","NO"]},"contactByText":{"type":"string","enum":["YES","NO"]},"id":{"type":"integer","format":"int32"}}},"CounterClaimEntity":{"type":"object","properties":{"appliedForHwf":{"type":"string","enum":["YES","NO"]},"claimAmount":{"type":"number"},"claimIssuedDate":{"type":"string","format":"date-time"},"claimSubmittedDate":{"type":"string","format":"date-time"},"claimType":{"type":"string","enum":["PAYMENT_OR_COMPENSATION","SOMETHING_ELSE","BOTH"]},"counterClaimFor":{"type":"string"},"counterClaimParties":{"type":"array","items":{"$ref":"#/components/schemas/CounterClaimPartyEntity"}},"counterClaimReasons":{"type":"string"},"estimatedMaxClaimAmount":{"type":"number"},"hwfReferenceNumber":{"type":"string"},"id":{"type":"string","format":"uuid"},"isClaimAmountKnown":{"type":"string","enum":["YES","NO"]},"languageUsed":{"type":"string","enum":["ENGLISH","WELSH","ENGLISH_AND_WELSH"]},"lastModifiedDate":{"type":"string","format":"date-time"},"needHelpWithFees":{"type":"string","enum":["YES","NO"]},"otherOrderRequestDetails":{"type":"string"},"otherOrderRequestFacts":{"type":"string"},"party":{"$ref":"#/components/schemas/PartyEntity"},"pcsCase":{"$ref":"#/components/schemas/PcsCaseEntity"},"previousStatus":{"type":"string","enum":["PENDING_COUNTER_CLAIM_ISSUED","COUNTER_CLAIM_ISSUED"]},"statementOfTruth":{},"status":{"type":"string","enum":["PENDING_COUNTER_CLAIM_ISSUED","COUNTER_CLAIM_ISSUED"]},"version":{"type":"integer","format":"int32"}}},"CounterClaimPartyEntity":{"type":"object","properties":{"counterClaim":{"$ref":"#/components/schemas/CounterClaimEntity"},"id":{"type":"integer","format":"int32"},"party":{"$ref":"#/components/schemas/PartyEntity"}}},"CreateCardPaymentRequest":{"type":"object","properties":{"amount":{"type":"number"},"language":{"type":"string"},"returnUrl":{"type":"string"}},"required":["amount","language","returnUrl"]},"CreateCardPaymentResponse":{"type":"object","properties":{"nextUrl":{"type":"string"},"paymentReference":{"type":"string"},"status":{"type":"string"}}},"DefendantResponseEntity":{"type":"object","properties":{"channel":{"type":"string"},"claim":{"$ref":"#/components/schemas/ClaimEntity"},"correspondenceAddressConfirmation":{"type":"string","enum":["YES","NO"]},"counterClaimWantToUploadFiles":{"type":"string","enum":["YES","NO"]},"defendantNameConfirmation":{"type":"string","enum":["YES","NO"]},"disputeClaim":{"type":"string","enum":["YES","NO"]},"disputeClaimDetails":{"type":"string"},"exemptLandlord":{"type":"string","enum":["YES","NO","NOT_SURE"]},"freeLegalAdvice":{"type":"string","enum":["YES","NO","PREFER_NOT_TO_SAY"]},"householdCircumstances":{"$ref":"#/components/schemas/HouseholdCircumstancesEntity"},"id":{"type":"integer","format":"int32"},"ingestionSource":{"type":"string"},"landlordLicensed":{"type":"string","enum":["YES","NO","NOT_SURE"]},"languageUsed":{"type":"string","enum":["ENGLISH","WELSH","ENGLISH_AND_WELSH"]},"makeCounterClaim":{"type":"string","enum":["YES","NO"]},"noticeReceivedDate":{"type":"string","format":"date"},"otherConsiderations":{"type":"string","enum":["YES","NO"]},"otherConsiderationsDetails":{"type":"string"},"party":{"$ref":"#/components/schemas/PartyEntity"},"paymentAgreement":{"$ref":"#/components/schemas/PaymentAgreementEntity"},"pcsCase":{"$ref":"#/components/schemas/PcsCaseEntity"},"possessionNoticeReceived":{"type":"string","enum":["YES","NO","NOT_SURE"]},"previousStatus":{"type":"string","enum":["CREATED","SUBMITTED"]},"reasonableAdjustment":{"$ref":"#/components/schemas/ReasonableAdjustmentEntity"},"rentArrearsAmountConfirmation":{"type":"string","enum":["YES","NO","NOT_SURE"]},"responseDeletedDate":{"type":"string","format":"date-time"},"responseReceivedDate":{"type":"string","format":"date-time"},"responseSubmittedDate":{"type":"string","format":"date-time"},"statementOfTruth":{"$ref":"#/components/schemas/StatementOfTruthEntity"},"status":{"type":"string","enum":["CREATED","SUBMITTED"]},"submissionDocument":{"$ref":"#/components/schemas/DocumentEntity"},"tenancyStartDateConfirmation":{"type":"string","enum":["YES","NO","NOT_SURE"]},"tenancyTypeConfirmation":{"type":"string","enum":["YES","NO","NOT_SURE"]},"writtenTerms":{"type":"string","enum":["YES","NO","NOT_SURE"]}}},"DeleteHearingRequest":{"type":"object","properties":{"cancellationReasonCodes":{"type":"array","items":{"type":"string"}}}},"DocumentEntity":{"type":"object","properties":{"binaryUrl":{"type":"string"},"categoryId":{"type":"string"},"claim":{"$ref":"#/components/schemas/ClaimEntity"},"claimDocuments":{"type":"array","items":{"$ref":"#/components/schemas/ClaimDocumentEntity"}},"contentType":{"type":"string"},"counterClaim":{"$ref":"#/components/schemas/CounterClaimEntity"},"defendantResponse":{"$ref":"#/components/schemas/DefendantResponseEntity"},"description":{"type":"string"},"documentId":{"type":"string","format":"uuid"},"enfCase":{"$ref":"#/components/schemas/EnforcementOrderEntity"},"fileName":{"type":"string"},"generalApplication":{"$ref":"#/components/schemas/GenAppEntity"},"id":{"type":"string","format":"uuid"},"party":{"$ref":"#/components/schemas/PartyEntity"},"pcsCase":{},"size":{"type":"integer","format":"int64"},"submittedDate":{"type":"string","format":"date-time"},"type":{"type":"string","enum":["RENT_STATEMENT","OCCUPATION_LICENCE","ENERGY_PERFORMANCE_CERTIFICATE","GAS_SAFETY_CERTIFICATE","EICR_REPORT","TENANCY_LICENCE","NOTICE_SERVED","WITNESS_STATEMENT","TENANCY_AGREEMENT","CERTIFICATE_OF_SERVICE","CORRESPONDENCE_FROM_DEFENDANT","CORRESPONDENCE_FROM_CLAIMANT","POSSESSION_NOTICE","NOTICE_FOR_SERVICE_OUT_OF_JURISDICTION","PHOTOGRAPHIC_EVIDENCE","INSPECTION_OR_REPORT","CERTIFICATE_OF_SUITABILITY_AS_LF","LEGAL_AID_CERTIFICATE","POLICE_REPORT","CLAIM","DEFENDANT_ACCESS_CODE","DOCUMENTS_SUPPORTING_A_COUNTERCLAIM","GAS_SAFETY_REPORT","ELECTRICAL_INSTALLATION_CONDITION","DEFENDANT_RESPONSE","COUNTERCLAIM","GENERAL_APPLICATION","OTHER"]},"url":{"type":"string"}}},"DynamicMultiSelectStringList":{"type":"object","properties":{"list_items":{"type":"array","items":{"$ref":"#/components/schemas/DynamicStringListElement"}},"value":{"type":"array","items":{"$ref":"#/components/schemas/DynamicStringListElement"}}}},"DynamicStringList":{"type":"object","properties":{"list_items":{"type":"array","items":{"$ref":"#/components/schemas/DynamicStringListElement"}},"value":{"$ref":"#/components/schemas/DynamicStringListElement"},"valueCode":{"type":"string"}}},"DynamicStringListElement":{"type":"object","properties":{"code":{"type":"string"},"label":{"type":"string"}}},"EmailNotificationResponse":{"type":"object","properties":{"notificationId":{"type":"integer","format":"int32"},"status":{"type":"string"},"taskId":{"type":"string"}}},"EnforcementOrder":{"type":"object","properties":{"chooseEnforcementType":{"$ref":"#/components/schemas/DynamicStringList"},"selectEnforcementType":{"type":"string","enum":["WARRANT","WRIT","WARRANT_OF_RESTITUTION","WRIT_OF_RESTITUTION"]},"selectedDefendants":{"$ref":"#/components/schemas/DynamicMultiSelectStringList"},"vulnerableAdultsChildren":{"$ref":"#/components/schemas/VulnerableAdultsChildren"},"vulnerableAdultsChildrenWarrantRest":{"$ref":"#/components/schemas/VulnerableAdultsChildren"},"vulnerablePeoplePresent":{"type":"string","enum":["YES","NO","NOT_SURE"]},"vulnerablePeoplePresentWarrantRest":{"type":"string","enum":["YES","NO","NOT_SURE"]},"warrantAdditionalInformationDetails":{"type":"object"},"warrantAdditionalInformationSelect":{"type":"object","enum":["YES","NO"]},"warrantAgreementClaimant":{"type":"object","items":{"type":"object","enum":["BELIEVE_TRUE"]}},"warrantAgreementClaimantLegalRep":{"type":"object","items":{"type":"object","enum":["AGREED"]}},"warrantAgreementDefendantLegalRep":{"type":"object","items":{"type":"object","enum":["AGREED"]}},"warrantAmountOfLandRegistryFees":{"type":"object"},"warrantAmountOfLegalCosts":{"type":"object"},"warrantAmountOfRepaymentCosts":{"type":"object"},"warrantAmountOwed":{"type":"object"},"warrantAnyRiskToBailiff":{"type":"object","enum":["YES","NO","NOT_SURE"]},"warrantAreLegalCostsToBeClaimed":{"type":"object","enum":["YES","NO"]},"warrantCertification":{"type":"object","items":{"type":"object","enum":["CERTIFY"]}},"warrantClarificationOnAccessDifficultyText":{"type":"object"},"warrantCompletedBy":{"type":"object","enum":["CLAIMANT","LEGAL_REPRESENTATIVE"]},"warrantCorrectNameAndAddress":{"type":"object","enum":["YES","NO"]},"warrantDefendantsDOBDetails":{"type":"object"},"warrantDefendantsDOBKnown":{"type":"object","enum":["YES","NO"]},"warrantEnforcementCriminalDetails":{"type":"object"},"warrantEnforcementDogsOrOtherAnimalsDetails":{"type":"object"},"warrantEnforcementFirearmsDetails":{"type":"object"},"warrantEnforcementLanguageUsed":{"type":"object","enum":["ENGLISH","WELSH","ENGLISH_AND_WELSH"]},"warrantEnforcementPoliceOrSocialServicesDetails":{"type":"object"},"warrantEnforcementProtestGroupMemberDetails":{"type":"object"},"warrantEnforcementRiskCategories":{"type":"object","items":{"type":"object","enum":["VIOLENT_OR_AGGRESSIVE","FIREARMS_POSSESSION","CRIMINAL_OR_ANTISOCIAL","VERBAL_OR_WRITTEN_THREATS","PROTEST_GROUP_MEMBER","AGENCY_VISITS","AGGRESSIVE_ANIMALS"]},"uniqueItems":true},"warrantEnforcementVerbalOrWrittenThreatsDetails":{"type":"object"},"warrantEnforcementViolentDetails":{"type":"object"},"warrantEvictEveryone":{"type":"object","enum":["YES","NO"]},"warrantFeeAmount":{"type":"string"},"warrantFirmNameLegalRep":{"type":"object"},"warrantFullNameLegalRep":{"type":"object"},"warrantFullNameParty":{"type":"object"},"warrantHaveLandRegistryFeesBeenPaid":{"type":"object","enum":["YES","NO"]},"warrantIsDifficultToAccessProperty":{"type":"object","enum":["YES","NO"]},"warrantIsSuspendedOrder":{"type":"object","enum":["YES","NO"]},"warrantOfRestitutionInfoText":{"type":"string"},"warrantPositionLegalRep":{"type":"object"},"warrantPositionParty":{"type":"object"},"warrantRepaymentChoice":{"type":"object","enum":["ALL","SOME","NONE"]},"warrantRepaymentSummaryMarkdown":{"type":"object"},"warrantShowChangeNameAddressPage":{"type":"object","enum":["Yes","No"]},"warrantShowPeopleWhoWillBeEvictedPage":{"type":"object","enum":["Yes","No"]},"warrantShowPeopleYouWantToEvictPage":{"type":"object","enum":["Yes","No"]},"warrantStatementOfTruthRepaymentSummaryMarkdown":{"type":"object"},"warrant_restAdditionalDocuments":{"type":"object","items":{"$ref":"#/components/schemas/ListValueEvidenceOfDefendants"}},"warrant_restAdditionalInformationDetails":{"type":"object"},"warrant_restAdditionalInformationSelect":{"type":"object","enum":["YES","NO"]},"warrant_restAnyRiskToBailiff":{"type":"object","enum":["YES","NO","NOT_SURE"]},"warrant_restClarificationOnAccessDifficultyText":{"type":"object"},"warrant_restEnforcementCriminalDetails":{"type":"object"},"warrant_restEnforcementDogsOrOtherAnimalsDetails":{"type":"object"},"warrant_restEnforcementFirearmsDetails":{"type":"object"},"warrant_restEnforcementPoliceOrSocialServicesDetails":{"type":"object"},"warrant_restEnforcementProtestGroupMemberDetails":{"type":"object"},"warrant_restEnforcementRiskCategories":{"type":"object","items":{"type":"object","enum":["VIOLENT_OR_AGGRESSIVE","FIREARMS_POSSESSION","CRIMINAL_OR_ANTISOCIAL","VERBAL_OR_WRITTEN_THREATS","PROTEST_GROUP_MEMBER","AGENCY_VISITS","AGGRESSIVE_ANIMALS"]},"uniqueItems":true},"warrant_restEnforcementVerbalOrWrittenThreatsDetails":{"type":"object"},"warrant_restEnforcementViolentDetails":{"type":"object"},"warrant_restHowDefendantsReturned":{"type":"object"},"warrant_restIsDifficultToAccessProperty":{"type":"object","enum":["YES","NO"]},"writAgreementClaimant":{"type":"object","items":{"type":"object","enum":["BELIEVE_TRUE"]}},"writAgreementClaimantLegalRep":{"type":"object","items":{"type":"object","enum":["AGREED"]}},"writAgreementDefendantLegalRep":{"type":"object","items":{"type":"object","enum":["AGREED"]}},"writAmountOfLandRegistryFees":{"type":"object"},"writAmountOfLegalCosts":{"type":"object"},"writAmountOfRepaymentCosts":{"type":"object"},"writAmountOwed":{"type":"object"},"writAreLegalCostsToBeClaimed":{"type":"object","enum":["YES","NO"]},"writCertification":{"type":"object","items":{"type":"object","enum":["CERTIFY"]}},"writCompletedBy":{"type":"object","enum":["CLAIMANT","LEGAL_REPRESENTATIVE"]},"writCorrectNameAndAddress":{"type":"object","enum":["YES","NO"]},"writEnforcementLanguageUsed":{"type":"object","enum":["ENGLISH","WELSH","ENGLISH_AND_WELSH"]},"writFeeAmount":{"type":"string"},"writFirmNameLegalRep":{"type":"object"},"writFullNameLegalRep":{"type":"object"},"writFullNameParty":{"type":"object"},"writHasClaimTransferredToHighCourt":{"type":"object","enum":["Yes","No"]},"writHasHiredHighCourtEnforcementOfficer":{"type":"object","enum":["YES","NO"]},"writHaveLandRegistryFeesBeenPaid":{"type":"object","enum":["YES","NO"]},"writHceoDetails":{"type":"object"},"writPositionLegalRep":{"type":"object"},"writPositionParty":{"type":"object"},"writRepaymentChoice":{"type":"object","enum":["ALL","SOME","NONE"]},"writRepaymentSummaryMarkdown":{"type":"object"},"writShowChangeNameAddressPage":{"type":"object","enum":["Yes","No"]},"writStatementOfTruthRepaymentSummaryMarkdown":{"type":"object"},"writWasGeneralApplicationToTransferToHighCourtSuccessful":{"type":"object","enum":["Yes","No"]}}},"EnforcementOrderEntity":{"type":"object","properties":{"bailiffDate":{"type":"string","format":"date-time"},"claim":{"$ref":"#/components/schemas/ClaimEntity"},"documents":{"type":"array","items":{"$ref":"#/components/schemas/DocumentEntity"}},"enforcementOrder":{"$ref":"#/components/schemas/EnforcementOrder"},"id":{"type":"string","format":"uuid"},"statementOfTruth":{"$ref":"#/components/schemas/StatementOfTruthEntity"},"warrantDetails":{"$ref":"#/components/schemas/WarrantEntity"},"warrantOfRestitutionDetails":{"$ref":"#/components/schemas/WarrantOfRestitutionEntity"}}},"FeePaymentEntity":{"type":"object","properties":{"amount":{"type":"number"},"claim":{"$ref":"#/components/schemas/ClaimEntity"},"externalReference":{"type":"string"},"helpWithFees":{"$ref":"#/components/schemas/HelpWithFeesEntity"},"id":{"type":"integer","format":"int32"},"party":{"$ref":"#/components/schemas/PartyEntity"},"paymentCallbackHandlerType":{"type":"string","enum":["CLAIM","COUNTER_CLAIM_ISSUE","GEN_APP_ISSUE"]},"paymentStatus":{"type":"string","enum":["PAID","NOT_PAID","PARTIALLY_PAID"]},"previousPaymentStatus":{"type":"string","enum":["PAID","NOT_PAID","PARTIALLY_PAID"]},"relatedEntityId":{"type":"string","format":"uuid"},"requestDate":{"type":"string","format":"date-time"},"serviceRequestReference":{"type":"string"},"taskData":{"type":"string"}}},"FlagDetail":{"type":"object","properties":{"availableExternally":{"type":"string","enum":["Yes","No"]},"dateTimeCreated":{"type":"string","format":"date-time"},"dateTimeModified":{"type":"string","format":"date-time"},"flagCode":{"type":"string"},"flagComment":{"type":"string"},"flagComment_cy":{"type":"string"},"flagUpdateComment":{"type":"string"},"hearingRelevant":{"type":"string","enum":["Yes","No"]},"name":{"type":"string"},"name_cy":{"type":"string"},"otherDescription":{"type":"string"},"otherDescription_cy":{"type":"string"},"path":{"type":"array","items":{"$ref":"#/components/schemas/ListValueString"}},"status":{"type":"string"},"subTypeKey":{"type":"string"},"subTypeValue":{"type":"string"},"subTypeValue_cy":{"type":"string"}}},"FlagRefDataEntity":{"type":"object","properties":{"availableExternally":{"type":"boolean"},"caseFlags":{"type":"array","items":{"$ref":"#/components/schemas/BaseCaseFlag"}},"flagCode":{"type":"string"},"flagName":{"type":"string"},"flagNameWelsh":{"type":"string"},"hearingRelevant":{"type":"boolean"},"id":{"type":"string","format":"uuid"},"visibility":{"type":"string"}}},"Flags":{"type":"object","properties":{"details":{"type":"array","items":{"$ref":"#/components/schemas/ListValueFlagDetail"}},"groupId":{"type":"string","format":"uuid"},"partyName":{"type":"string"},"roleOnCase":{"type":"string"},"visibility":{"type":"string","enum":["Internal","External"]}}},"GenAppEntity":{"type":"object","properties":{"applicationReceivedDate":{"type":"string","format":"date"},"applicationSubmittedDate":{"type":"string","format":"date-time"},"appliedForHwf":{"type":"string","enum":["YES","NO"]},"clientReference":{"type":"string"},"documents":{"type":"array","items":{"$ref":"#/components/schemas/DocumentEntity"}},"documentsUploaded":{"type":"string","enum":["YES","NO"]},"feeAmountReceived":{"type":"number"},"helpWithFeesEntity":{"$ref":"#/components/schemas/HelpWithFeesEntity"},"id":{"type":"string","format":"uuid"},"languageUsed":{"type":"string","enum":["ENGLISH","WELSH","ENGLISH_AND_WELSH"]},"needHwf":{"type":"string","enum":["YES","NO"]},"otherPartiesAgreed":{"type":"string","enum":["YES","NO"]},"party":{"$ref":"#/components/schemas/PartyEntity"},"pcsCase":{},"rank":{"type":"integer","format":"int32"},"somethingElseDetails":{"type":"string"},"state":{"type":"string","enum":["PENDING_GEN_APP_ISSUED","GEN_APP_ISSUED"]},"statementOfTruth":{"$ref":"#/components/schemas/StatementOfTruthEntity"},"submissionDocument":{"$ref":"#/components/schemas/DocumentEntity"},"type":{"type":"string","enum":["ADJOURN","SET_ASIDE","SOMETHING_ELSE"]},"whatOrderWanted":{"type":"string"},"within14Days":{"type":"string","enum":["YES","NO"]},"withoutNotice":{"type":"string","enum":["YES","NO"]},"withoutNoticeReason":{"type":"string"}}},"GetHearingsResponse":{"type":"object","properties":{"caseHearings":{"type":"array","items":{"$ref":"#/components/schemas/CaseHearing"}},"caseRef":{"type":"string"},"hmctsServiceCode":{"type":"string"}}},"HearingDaySchedule":{"type":"object","properties":{"attendees":{"type":"array","items":{"$ref":"#/components/schemas/Attendee"}},"hearingEndDateTime":{"type":"string","format":"date-time"},"hearingJudgeId":{"type":"string"},"hearingRoomId":{"type":"string"},"hearingStartDateTime":{"type":"string","format":"date-time"},"hearingVenueId":{"type":"string"},"listAssistSessionID":{"type":"string"},"panelMemberIds":{"type":"array","items":{"type":"string"}}}},"HearingDetails":{"type":"object","properties":{"amendReasonCodes":{"type":"array","items":{"type":"string"}},"autolistFlag":{"type":"boolean"},"duration":{"type":"integer","format":"int32"},"facilitiesRequired":{"type":"array","items":{"type":"string"}},"hearingChannels":{"type":"array","items":{"type":"string"}},"hearingInWelshFlag":{"type":"boolean"},"hearingIsLinkedFlag":{"type":"boolean"},"hearingLocations":{"type":"array","items":{"$ref":"#/components/schemas/HearingLocation"}},"hearingPriorityType":{"type":"string"},"hearingRequester":{"type":"string"},"hearingType":{"type":"string"},"hearingWindow":{"$ref":"#/components/schemas/HearingWindow"},"leadJudgeContractType":{"type":"string"},"listingAutoChangeReasonCode":{"type":"string"},"listingComments":{"type":"string"},"multiDayHearing":{"type":"boolean"},"nonStandardHearingDurationReasons":{"type":"array","items":{"type":"string"}},"numberOfPhysicalAttendees":{"type":"integer","format":"int32"},"panelRequirements":{"$ref":"#/components/schemas/PanelRequirements"},"privateHearingRequiredFlag":{"type":"boolean"}}},"HearingLocation":{"type":"object","properties":{"locationId":{"type":"string"},"locationType":{"type":"string"}}},"HearingRequest":{"type":"object","properties":{"caseDetails":{"$ref":"#/components/schemas/CaseDetails"},"hearingDetails":{"$ref":"#/components/schemas/HearingDetails"},"partyDetails":{"type":"array","items":{"$ref":"#/components/schemas/PartyDetails"}},"requestDetails":{"$ref":"#/components/schemas/RequestDetails"}}},"HearingResponse":{"type":"object","properties":{"hearingRequestID":{"type":"integer","format":"int64"},"partiesNotified":{"type":"string","format":"date-time"},"requestVersion":{"type":"integer","format":"int32"},"responseVersion":{"type":"integer","format":"int32"},"serviceData":{"type":"object","additionalProperties":{}},"status":{"type":"string"},"timeStamp":{"type":"string","format":"date-time"},"versionNumber":{"type":"integer","format":"int32"}}},"HearingWindow":{"type":"object","properties":{"dateRangeEnd":{"type":"string","format":"date"},"dateRangeStart":{"type":"string","format":"date"},"firstDateTimeMustBe":{"type":"string","format":"date-time"}}},"HelpWithFeesEntity":{"type":"object","properties":{"hwfReference":{"type":"string"},"id":{"type":"integer","format":"int32"}}},"HouseholdCircumstancesEntity":{"type":"object","properties":{"additionalCircumstancesDetails":{"type":"string"},"alternativeAccommodation":{"type":"string","enum":["YES","NO","NOT_SURE"]},"alternativeAccommodationTransferDate":{"type":"string","format":"date"},"debtContribution":{"type":"number"},"debtContributionFrequency":{"type":"string","enum":["WEEKLY","MONTHLY"]},"debtTotal":{"type":"number"},"defendantResponse":{"$ref":"#/components/schemas/DefendantResponseEntity"},"dependantChildren":{"type":"string","enum":["YES","NO"]},"dependantChildrenDetails":{"type":"string"},"exceptionalHardship":{"type":"string","enum":["YES","NO"]},"exceptionalHardshipDetails":{"type":"string"},"id":{"type":"integer","format":"int32"},"otherDependantDetails":{"type":"string"},"otherDependants":{"type":"string","enum":["YES","NO"]},"otherTenants":{"type":"string","enum":["YES","NO"]},"otherTenantsDetails":{"type":"string"},"priorityDebts":{"type":"string","enum":["YES","NO"]},"regularExpenses":{"type":"array","items":{"$ref":"#/components/schemas/RegularExpenseEntity"}},"regularIncomeEntity":{"$ref":"#/components/schemas/RegularIncomeEntity"},"shareAdditionalCircumstances":{"type":"string","enum":["YES","NO"]},"shareIncomeExpenseDetails":{"type":"string","enum":["YES","NO"]},"ucApplicationDate":{"type":"string","format":"date"},"universalCredit":{"type":"string","enum":["YES","NO"]}}},"IndividualDetails":{"type":"object","properties":{"custodyStatus":{"type":"string"},"firstName":{"type":"string"},"hearingChannelEmail":{"type":"array","items":{"type":"string"}},"hearingChannelPhone":{"type":"array","items":{"type":"string"}},"interpreterLanguage":{"type":"string"},"lastName":{"type":"string"},"otherReasonableAdjustmentDetails":{"type":"string"},"preferredHearingChannel":{"type":"string"},"reasonableAdjustments":{"type":"array","items":{"type":"string"}},"relatedParties":{"type":"array","items":{"$ref":"#/components/schemas/RelatedParty"}},"title":{"type":"string"},"vulnerabilityDetails":{"type":"string"},"vulnerableFlag":{"type":"boolean"}}},"JsonNode":{},"LegalRepresentative":{"type":"object","properties":{"address":{"$ref":"#/components/schemas/AddressUK"},"emailAddress":{"type":"string"},"firstName":{"type":"string"},"lastName":{"type":"string"},"organisationName":{"type":"string"},"telephoneNumber":{"type":"string"}}},"LegalRepresentativeEntity":{"type":"object","properties":{"address":{"$ref":"#/components/schemas/AddressEntity"},"claimPartyLegalRepresentativeList":{"type":"array","items":{"$ref":"#/components/schemas/ClaimPartyLegalRepresentativeEntity"}},"email":{"type":"string"},"firstName":{"type":"string"},"id":{"type":"string","format":"uuid"},"idamId":{"type":"string","format":"uuid"},"lastName":{"type":"string"},"organisationId":{"type":"string"},"organisationName":{"type":"string"},"phone":{"type":"string"}}},"LegalRepresentativePartyId":{"type":"object","properties":{"legalRepresentativeId":{"type":"string","format":"uuid"},"partyId":{"type":"string","format":"uuid"}}},"ListValueFlagDetail":{"type":"object","properties":{"id":{"type":"string"},"value":{"$ref":"#/components/schemas/FlagDetail"}}},"ListValueString":{"type":"object","properties":{"id":{"type":"string"},"value":{"type":"string"}}},"NoticeOfPossessionEntity":{"type":"object","properties":{"claim":{},"id":{"type":"integer","format":"int32"},"isAbleToUploadDocument":{"type":"string","enum":["Yes","No"]},"noticeDate":{"type":"string","format":"date"},"noticeDateTime":{"type":"string","format":"date-time"},"noticeDetails":{"type":"string"},"noticeServed":{"type":"string","enum":["Yes","No"]},"noticeStatement":{"type":"string"},"noticeType":{"type":"string"},"servingMethod":{"type":"string","enum":["FIRST_CLASS_POST","DELIVERED_PERMITTED_PLACE","PERSONALLY_HANDED","EMAIL","OTHER_ELECTRONIC","OTHER"]},"unableToUploadReason":{"type":"string"}}},"OrganisationDetails":{"type":"object","properties":{"cftOrganisationID":{"type":"string"},"name":{"type":"string"},"organisationType":{"type":"string"}}},"PanelPreference":{"type":"object","properties":{"memberID":{"type":"string"},"memberType":{"type":"string"},"requirementType":{"type":"string"}}},"PanelRequirements":{"type":"object","properties":{"authorisationSubType":{"type":"array","items":{"type":"string"}},"authorisationTypes":{"type":"array","items":{"type":"string"}},"panelPreferences":{"type":"array","items":{"$ref":"#/components/schemas/PanelPreference"}},"panelSpecialisms":{"type":"array","items":{"type":"string"}},"roleType":{"type":"array","items":{"type":"string"}}}},"Party":{"type":"object","properties":{"address":{"$ref":"#/components/schemas/AddressUK"},"addressKnown":{"type":"string","enum":["YES","NO"]},"addressSameAsProperty":{"type":"string","enum":["YES","NO"]},"dateOfBirth":{"type":"string","format":"date"},"defendantFlags":{"$ref":"#/components/schemas/Flags"},"emailAddress":{"type":"string"},"firstName":{"type":"string"},"id":{"type":"string"},"idamId":{"type":"string"},"lastName":{"type":"string"},"legalRepresentative":{"$ref":"#/components/schemas/LegalRepresentative"},"nameKnown":{"type":"string","enum":["YES","NO"]},"orgName":{"type":"string"},"phoneNumber":{"type":"string"},"phoneNumberProvided":{"type":"string","enum":["YES","NO"]}}},"PartyDetails":{"type":"object","properties":{"individualDetails":{"$ref":"#/components/schemas/IndividualDetails"},"organisationDetails":{"$ref":"#/components/schemas/OrganisationDetails"},"partyChannelSubType":{"type":"string"},"partyID":{"type":"string"},"partyRole":{"type":"string"},"partyType":{"type":"string"},"unavailabilityDOW":{"type":"array","items":{"$ref":"#/components/schemas/UnavailabilityDow"}},"unavailabilityRanges":{"type":"array","items":{"$ref":"#/components/schemas/UnavailabilityRanges"}}}},"PartyEmail":{"type":"object","properties":{"emailAddress":{"type":"string"},"partyId":{"type":"string","format":"uuid"}}},"PartyEntity":{"type":"object","properties":{"address":{"$ref":"#/components/schemas/AddressEntity"},"addressKnown":{"type":"string","enum":["YES","NO"]},"addressSameAsProperty":{"type":"string","enum":["YES","NO"]},"claimParties":{"type":"array","items":{"$ref":"#/components/schemas/ClaimPartyEntity"},"uniqueItems":true},"claimPartyLegalRepresentativeList":{"type":"array","items":{"$ref":"#/components/schemas/ClaimPartyLegalRepresentativeEntity"}},"contactPreferences":{"$ref":"#/components/schemas/ContactPreferencesEntity"},"dateOfBirth":{"type":"string","format":"date"},"defendantFlags":{"type":"array","items":{"$ref":"#/components/schemas/CasePartyFlagEntity"}},"emailAddress":{"type":"string"},"firstName":{"type":"string"},"id":{"type":"string","format":"uuid"},"idamId":{"type":"string","format":"uuid"},"lastName":{"type":"string"},"nameKnown":{"type":"string","enum":["YES","NO"]},"nameOverridden":{"type":"string","enum":["Yes","No"]},"orgName":{"type":"string"},"organisationId":{"type":"string"},"pcqId":{"type":"string"},"pcsCase":{},"phoneNumber":{"type":"string"},"phoneNumberProvided":{"type":"string","enum":["YES","NO"]}}},"PaymentAgreementEntity":{"type":"object","properties":{"additionalContributionFrequency":{"type":"string"},"additionalRentContribution":{"type":"number"},"anyPaymentsMade":{"type":"string","enum":["YES","NO"]},"defendantResponse":{},"id":{"type":"integer","format":"int32"},"paidMoneyToHousingOrg":{"type":"string","enum":["YES","NO"]},"paymentDetails":{"type":"string"},"repayArrearsInstalments":{"type":"string","enum":["YES","NO"]},"repaymentAgreedDetails":{"type":"string"},"repaymentPlanAgreed":{"type":"string","enum":["YES","NO","NOT_SURE"]}}},"PcsCaseEntity":{"type":"object","properties":{"baseLocation":{"type":"integer","format":"int32"},"caseFlags":{"type":"array","items":{"$ref":"#/components/schemas/CaseFlagEntity"}},"caseLinks":{"type":"array","items":{"$ref":"#/components/schemas/CaseLinkEntity"}},"caseManagementLocation":{"type":"integer","format":"int32"},"caseNotes":{"type":"array","items":{"$ref":"#/components/schemas/CaseNoteEntity"}},"caseReference":{"type":"integer","format":"int64"},"claimantType":{"type":"string","enum":["PRIVATE_LANDLORD","PROVIDER_OF_SOCIAL_HOUSING","COMMUNITY_LANDLORD","MORTGAGE_LENDER","OTHER"]},"claims":{"type":"array","items":{"$ref":"#/components/schemas/ClaimEntity"}},"counterClaims":{"type":"array","items":{"$ref":"#/components/schemas/CounterClaimEntity"}},"defendantResponses":{"type":"array","items":{"$ref":"#/components/schemas/DefendantResponseEntity"}},"documents":{"type":"array","items":{"$ref":"#/components/schemas/DocumentEntity"}},"genApps":{"type":"array","items":{"$ref":"#/components/schemas/GenAppEntity"},"uniqueItems":true},"id":{"type":"string","format":"uuid"},"legislativeCountry":{"type":"string","enum":["England","Northern Ireland","Scotland","Wales","Isle of Man","Channel Islands"]},"parties":{"type":"array","items":{"$ref":"#/components/schemas/PartyEntity"},"uniqueItems":true},"preActionProtocolCompleted":{"type":"boolean"},"propertyAddress":{"$ref":"#/components/schemas/AddressEntity"},"regionId":{"type":"integer","format":"int32"},"reviewDates":{"type":"array","items":{"$ref":"#/components/schemas/CaseReviewDateEntity"}},"tenancyLicence":{"$ref":"#/components/schemas/TenancyLicenceEntity"}}},"PossessionAlternativesEntity":{"type":"object","properties":{"claim":{},"dotHousingActSection":{"type":"string","enum":["SECTION_82A_2","SECTION_6A_2"]},"dotReason":{"type":"string"},"dotRequested":{"type":"string","enum":["Yes","No"]},"dotStatementDetails":{"type":"string"},"dotStatementServed":{"type":"string","enum":["Yes","No"]},"id":{"type":"integer","format":"int32"},"suspensionOfRTB":{"type":"string","enum":["Yes","No"]},"suspensionOfRTBHousingActSection":{"type":"string","enum":["SECTION_82A_2","SECTION_6A_2","SECTION_121A"]},"suspensionOfRTBReason":{"type":"string"}}},"ReasonableAdjustmentEntity":{"type":"object","properties":{"consideredVulnerable":{"type":"string","enum":["Yes","No"]},"defendantResponse":{},"hearingEnhancementDescription":{"type":"string"},"id":{"type":"integer","format":"int32"},"languageInterpreter":{"type":"string","enum":["Yes","No"]},"languageSupportDescription":{"type":"string"},"reasonableAdjustmentDescription":{"type":"string"},"reasonableAdjustmentsRequired":{"type":"string"},"signLanguageSupportDescription":{"type":"string"},"travelSupportDescription":{"type":"string"},"vulnerableCharacteristicDescription":{"type":"string"},"welshLanguageRequirements":{"type":"string"}}},"RegularExpenseEntity":{"type":"object","properties":{"amount":{"type":"number"},"expenseFrequency":{"type":"string","enum":["WEEKLY","MONTHLY"]},"expenseType":{"type":"string","enum":["HOUSEHOLD_BILLS","LOAN_PAYMENTS","CHILD_SPOUSAL_MAINTENANCE","MOBILE_PHONE","GROCERY_SHOPPING","FUEL_PARKING_TRANSPORT","SCHOOL_COSTS","CLOTHING","OTHER"]},"householdCircumstances":{"$ref":"#/components/schemas/HouseholdCircumstancesEntity"},"id":{"type":"integer","format":"int32"}}},"RegularIncomeEntity":{"type":"object","properties":{"householdCircumstances":{"$ref":"#/components/schemas/HouseholdCircumstancesEntity"},"id":{"type":"integer","format":"int32"},"items":{"type":"array","items":{"$ref":"#/components/schemas/RegularIncomeItemEntity"}},"otherIncomeDetails":{"type":"string"}}},"RegularIncomeItemEntity":{"type":"object","properties":{"amount":{"type":"number"},"frequency":{"type":"string","enum":["WEEKLY","MONTHLY"]},"id":{"type":"integer","format":"int32"},"incomeType":{"type":"string","enum":["INCOME_FROM_JOBS","PENSION","UNIVERSAL_CREDIT","OTHER_BENEFITS","MONEY_FROM_ELSEWHERE"]},"regularIncome":{"$ref":"#/components/schemas/RegularIncomeEntity"}}},"RelatedParty":{"type":"object","properties":{"relatedPartyID":{"type":"string"},"relationshipType":{"type":"string"}}},"RentArrearsEntity":{"type":"object","properties":{"arrearsJudgmentWanted":{"type":"string","enum":["YES","NO"]},"claim":{},"id":{"type":"integer","format":"int32"},"recoveryAttemptDetails":{"type":"string"},"recoveryAttempted":{"type":"string","enum":["YES","NO"]},"totalRentArrears":{"type":"number"}}},"RequestDetails":{"type":"object","properties":{"versionNumber":{"type":"integer","format":"int32"}}},"StatementOfTruthEntity":{"type":"object","properties":{"accepted":{"type":"string","enum":["Yes","No"]},"claim":{},"completedBy":{"type":"string","enum":["CLAIMANT","LEGAL_REPRESENTATIVE"]},"completedDate":{"type":"string","format":"date-time"},"defendantResponse":{"$ref":"#/components/schemas/DefendantResponseEntity"},"enforcementOrder":{"$ref":"#/components/schemas/EnforcementOrderEntity"},"firmName":{"type":"string"},"fullName":{"type":"string"},"id":{"type":"integer","format":"int32"},"positionHeld":{"type":"string"}}},"TenancyLicenceEntity":{"type":"object","properties":{"calculatedDailyRentCorrect":{"type":"string","enum":["YES","NO"]},"hasCopyOfTenancyLicence":{"type":"string","enum":["YES","NO"]},"id":{"type":"integer","format":"int32"},"otherRentFrequency":{"type":"string"},"otherTypeDetails":{"type":"string"},"pcsCase":{"$ref":"#/components/schemas/PcsCaseEntity"},"reasonsForNoTenancyLicence":{"type":"string"},"rentAmount":{"type":"number"},"rentFrequency":{"type":"string","enum":["WEEKLY","FORTNIGHTLY","MONTHLY","OTHER"]},"rentPerDay":{"type":"number"},"startDate":{"type":"string","format":"date"},"type":{"type":"string","enum":["ASSURED_TENANCY","SECURE_TENANCY","INTRODUCTORY_TENANCY","FLEXIBLE_TENANCY","DEMOTED_TENANCY","SECURE_CONTRACT","STANDARD_CONTRACT","OTHER"]}}},"UnavailabilityDow":{"type":"object","properties":{"DOW":{"type":"string"},"DOWUnavailabilityType":{"type":"string"}}},"UnavailabilityRanges":{"type":"object","properties":{"unavailabilityType":{"type":"string"},"unavailableFromDate":{"type":"string","format":"date"},"unavailableToDate":{"type":"string","format":"date"}}},"UpdateHearingRequest":{"type":"object","properties":{"caseDetails":{"$ref":"#/components/schemas/CaseDetails"},"hearingDetails":{"$ref":"#/components/schemas/HearingDetails"},"partyDetails":{"type":"array","items":{"$ref":"#/components/schemas/PartyDetails"}},"requestDetails":{"$ref":"#/components/schemas/RequestDetails"}}},"ValidateAccessCodeRequest":{"type":"object","properties":{"accessCode":{"type":"string","maxLength":12,"minLength":12}},"required":["accessCode"]},"VulnerableAdultsChildren":{"type":"object","properties":{"vulnerableCategory":{"type":"string","enum":["VULNERABLE_ADULTS","VULNERABLE_CHILDREN","VULNERABLE_ADULTS_AND_CHILDREN"]},"vulnerableReasonText":{"type":"string"}}},"WarrantEntity":{"type":"object","properties":{"additionalInformationDetails":{"type":"string"},"additionalInformationSelect":{"type":"string","enum":["YES","NO"]},"agreementClaimant":{"type":"string"},"agreementLegalRep":{"type":"string"},"amountOfLandRegistryFees":{"type":"number"},"amountOfLegalCosts":{"type":"number"},"amountOfRepaymentCosts":{"type":"number"},"amountOwed":{"type":"number"},"areLegalCostsToBeClaimed":{"type":"string","enum":["YES","NO"]},"certification":{"type":"string"},"clarificationOnAccessDifficultyText":{"type":"string"},"completedBy":{"type":"string","enum":["CLAIMANT","LEGAL_REPRESENTATIVE"]},"correctNameAndAddress":{"type":"string","enum":["YES","NO"]},"created":{"type":"string","format":"date-time"},"defendantsDOBDetails":{"type":"string"},"defendantsDOBKnown":{"type":"string","enum":["YES","NO"]},"enforcementOrder":{"$ref":"#/components/schemas/EnforcementOrderEntity"},"evictEveryone":{"type":"string","enum":["YES","NO"]},"firmNameLegalRep":{"type":"string"},"fullNameClaimant":{"type":"string"},"fullNameLegalRep":{"type":"string"},"haveLandRegistryFeesBeenPaid":{"type":"string","enum":["YES","NO"]},"id":{"type":"integer","format":"int32"},"isDifficultToAccessProperty":{"type":"string","enum":["YES","NO"]},"isSuspendedOrder":{"type":"string","enum":["YES","NO"]},"languageUsed":{"type":"string","enum":["ENGLISH","WELSH","ENGLISH_AND_WELSH"]},"positionClaimant":{"type":"string"},"positionLegalRep":{"type":"string"},"repaymentChoice":{"type":"string"},"repaymentSummaryMarkdown":{"type":"string"},"showPeopleWhoWillBeEvictedPage":{"type":"string","enum":["YES","NO"]},"showPeopleYouWantToEvictPage":{"type":"string","enum":["YES","NO"]}}},"WarrantOfRestitutionEntity":{"type":"object","properties":{"additionalInformationDetails":{"type":"string"},"additionalInformationSelect":{"type":"string","enum":["YES","NO"]},"clarificationOnAccessDifficultyText":{"type":"string"},"created":{"type":"string","format":"date-time"},"enforcementOrder":{},"howDefendantsReturned":{"type":"string"},"id":{"type":"integer","format":"int32"},"isDifficultToAccessProperty":{"type":"string","enum":["YES","NO"]},"languageUsed":{"type":"string","enum":["ENGLISH","WELSH","ENGLISH_AND_WELSH"]}}}},"securitySchemes":{"AuthorizationToken":{"bearerFormat":"JWT","in":"header","name":"Authorization","scheme":"bearer","type":"http"},"ServiceAuthorization":{"in":"header","name":"ServiceAuthorization","type":"apiKey"}}}}
