reduced-fee-approved
v0.0.1

An OPG user has approved the donor's application to pay a reduced fee

Context

The online donor has applied for a reduced fee. OPG staff review all reduced fee applications.

An OPG user has approved the application.

Trigger

A fee reduction record has been added in Sirius.

Effect

The task list in MRLPA shows the payment task as completed if payment and approved reduction match, or asks for further payment if they do not (for example, if the donor applied for an exemption but was approved for a remission).

Consumer / Producer Diagram

Examples

1{
2  "uid": "M-1234-5678-9012",
3  "approvedType": "HalfFee"
4}
5
reduced-fee-approved Schema (json)
{
  "$id": "https://opg.service.justice.gov.uk/opg.poas.sirius/reduced-fee-approved.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "opg.poas.sirius/reduced-fee-approved",
  "type": "object",
  "properties": {
    "uid": {
      "type": "string",
      "description": "The UID of the LPA",
      "pattern": "^M(-[A-Z0-9]{4}){3}$"
    },
    "approvedType": {
      "type": "string",
      "description": "The type of reduction that was approved",
      "enum": ["HalfFee", "QuarterFee", "NoFee"]
    }
  },
  "required": ["uid", "approvedType"]
}
Edit this pageLast updated on 2024/11/22