identity-check-mismatchedv0.0.1
The identity check returned details that don't match what was entered.
Context
The donor or certificate provider complete an identity check for a signed LPA.
Trigger
When the identity check returns data that does not match the expected data that was entered.
Effect
Sirius provides this data to caseworkers so that they can manually check whether the change of data makes a material or immaterial difference.
Consumer / Producer Diagram
Examples
1{
2 "uid": "M-0000-1111-2222",
3 "actorUID": "740e5834-3a29-46b4-9a6f-16142fde533a",
4 "provided": {
5 "firstNames": "John",
6 "lastName": "Smith",
7 "dateOfBirth": "2000-01-02"
8 },
9 "verified": {
10 "firstNames": "Jonathan",
11 "lastName": "Smith",
12 "dateOfBirth": "2000-01-02"
13 }
14}
15
identity-check-mismatched Schema (json)
{
"$id": "https://opg.service.justice.gov.uk/opg.poas.makeregister/identity-check-mismatched.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "opg.poas.makeregister/identity-check-mismatched",
"type": "object",
"properties": {
"uid": {
"type": "string",
"description": "The UID of the LPA",
"pattern": "^M(-[A-Z0-9]{4}){3}$"
},
"actorUID": {
"type": "string",
"description": "The UID of the actor the identity check relates to",
"pattern": "^([a-z0-9]{8}-)([a-z0-9]{4}-){3}([a-z0-9]{12})$"
},
"provided": {
"description": "The data as provided on the LPA",
"allOf": [{"$ref": "#/$defs/Details"}]
},
"verified": {
"description": "The verified data returned from the identity check",
"allOf": [{"$ref": "#/$defs/Details"}]
}
},
"$defs": {
"Details": {
"type": "object",
"properties": {
"firstNames": {
"type": "string",
"description": "The first name(s) including any middle names"
},
"lastName": {
"type": "string",
"description": "The last name"
},
"dateOfBirth": {
"type": "string",
"description": "The date of birth",
"format": "date"
}
},
"required": ["firstNames", "lastName", "dateOfBirth"]
}
},
"required": ["uid", "provided", "verified"]
}
Edit this pageLast updated on 2024/11/22