priority-correspondence-sent
v0.0.1

An OPG user has sent a letter to the online donor to inform about a problem which needs attention.

Context

An OPG user has identified that there is a problem with the donor's application and has sent a letter to the donor informing about it.

Trigger

Sirius sends the event when the letter informing about the problem has been successfully sent by GOV.UK Notify.

Effect

The task list in MRLPA will inform the donor that a letter has been sent that needs attention.

Consumer / Producer Diagram

Examples

1{
2  "uid": "M-1234-5678-9012",
3  "sentDate": "2024-01-18T00:00:00.000Z"
4}
5
priority-correspondence-sent Schema (json)
{
  "$id": "https://opg.service.justice.gov.uk/opg.poas.sirius/priority-correspondence-sent.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "opg.poas.sirius/priority-correspondence-sent",
  "type": "object",
  "properties": {
    "uid": {
      "type": "string",
      "description": "The UID of the LPA",
      "pattern": "^M(-[A-Z0-9]{4}){3}$"
    },
    "sentDate": {
      "type": "string",
      "description": "The date when the priority correspondence around a problem was sent to the user",
      "format": "date-time"
    }
  },
  "required": ["uid", "sentDate"]
}
Edit this pageLast updated on 2024/11/22