paper-form-requestedv0.0.1
MRLPA has requested a paper form be sent to the certificate provider or an attorney
Context
A certificate provider or attorney has opted to sign a paper form rather than doing so online.
The application LPA process is ready for them to sign.
Trigger
For the certificate provider: either the donor has just completed their section online, or they've done so on paper and MRLPA has received the donor-submission-completed event
For the attorney: either the certificate provider has just completed their section online, or they've done so on paper and MRLPA has received the certificate-provider-submission-completed event
Effect
Sirius generates the form appropriate to the actor and sends it to them (either via GOV.UK Notify or Xerox). The accessCode
provided in the event is included in the covering letter so that the actor can switch to the online channel.
Consumer / Producer Diagram
Examples
1{
2 "uid": "M-1234-5678-9012",
3 "actorType": "attorney",
4 "actorUID": "740e5834-3a29-46b4-9a6f-16142fde533a",
5 "accessCode": "abcdef123456"
6}
7
paper-form-requested Schema (json)
{
"$id": "https://opg.service.justice.gov.uk/opg.poas.sirius/paper-form-requested.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "opg.poas.makeregister/paper-form-requested",
"type": "object",
"properties": {
"uid": {
"type": "string",
"description": "The UID of the LPA",
"pattern": "^M(-[A-Z0-9]{4}){3}$"
},
"actorType": {
"type": "string",
"description": "The type of actor that needs a paper form",
"enum": ["certificateProvider", "attorney", "replacementAttorney", "trustCorporation", "replacementTrustCorporation"]
},
"actorUID": {
"type": "string",
"description": "The UID of the actor that needs a paper form",
"pattern": "^([a-z0-9]{8}-)([a-z0-9]{4}-){3}([a-z0-9]{12})$"
},
"accessCode": {
"type": "string",
"description": "One-time code that can be used by the actor to complete their actions online"
}
},
"required": ["uid", "actorType", "actorUID", "accessCode"]
}
Edit this pageLast updated on 2024/11/22