diff --git a/domains/POAS/events/reduced-fee-requested/examples/example.json b/domains/POAS/events/reduced-fee-requested/examples/example.json
index c5f2400..5be6bf8 100644
--- a/domains/POAS/events/reduced-fee-requested/examples/example.json
+++ b/domains/POAS/events/reduced-fee-requested/examples/example.json
@@ -4,5 +4,6 @@
"evidence": [
"/M-1234-5678-9012/uploads/payslip.pdf",
"/M-1234-5678-9012/uploads/application.doc"
- ]
+ ],
+ "evidenceDelivery": "upload"
}
diff --git a/domains/POAS/events/reduced-fee-requested/index.md b/domains/POAS/events/reduced-fee-requested/index.md
index 3e25b50..a17687d 100644
--- a/domains/POAS/events/reduced-fee-requested/index.md
+++ b/domains/POAS/events/reduced-fee-requested/index.md
@@ -18,9 +18,7 @@ If the donor believes they qualify for a reduced fee then the OPG needs to asses
MRLPA sends this event when a donor has made a reduced fees request so that Sirius can create tasks for caseworkers to review the evidence.
-
- 11th September: We haven't yet identifed whether this event occurs as soon as the request is made or once the evidence has been validated (i.a. being scanned for viruses)
-
+This event will be sent after the evidence has been scanned for viruses but in the case of online delivery the documents may not yet have replicated to the destination S3 bucket.
diff --git a/domains/POAS/events/reduced-fee-requested/schema.json b/domains/POAS/events/reduced-fee-requested/schema.json
index f55df8a..e584062 100644
--- a/domains/POAS/events/reduced-fee-requested/schema.json
+++ b/domains/POAS/events/reduced-fee-requested/schema.json
@@ -20,7 +20,12 @@
"items": {
"type": "string"
}
+ },
+ "evidenceDelivery": {
+ "type": "string",
+ "description": "How the evidence is being delivered to OPG",
+ "enum": ["upload", "post"]
}
},
- "required": ["uid", "requestType", "evidence"]
+ "required": ["uid", "requestType", "evidence", "evidenceDelivery"]
}