ЕСОЗ - публічна документація
(GraphQL, NHS) Update Person
- 1 Purpose
- 1.1 Scheme
- 1.2 Design
- 1.3 Specification
- 1.4 Key points
- 1.4.1 Scope and roles
- 1.4.2 Related articles
- 2 Authorize
- 3 Digital signature
- 3.1 Validate DRFO
- 4 Validation of Signed Content
- 4.1 Get global parameters
- 4.1.1 cURL example
- 4.2 Validate parallel editings (new)
- 4.3 Validate Person’s status id in DB and deduplication controls
- 4.4 Check “patient_signed” flag.
- 4.5 Check “process_disclosure_data_consent” flag.
- 4.6 Validate confidant person
- 4.7 Validate "tax_id"
- 4.8 Check "no_tax_id" flag
- 4.9 Validate person documents
- 4.10 Validate NHS request fields
- 4.1 Get global parameters
- 5 JSON validation schema
- 6 Execution
- 6.1 Search pending person_requests in IL.person_requests
- 6.2 Cancel person_requests records in IL.person_requests
- 6.3 Create new record in IL.person_requests
- 6.4 Store signed_content in appropriate Person_request Bucket.
- 6.5 Update Person in MPI.persons
- 6.6 Submit person on verification
- 6.7 Calculate cumulative verification status
Purpose
To allow NHS Admin/Data Stuart (NHS employee with assigned appropriate scopes) to SAVE updates to personal data of a Person, based on Person’s official request to NHS, which is actually a legal authorisation for changes in his personal data.
Scheme
Design
Specification
Key points
The process is initiated by any NHS employee (only within NHS Admin Panel) with necessary scopes and involves the transfer (by graphQL mutation) of a signed_content
. It includes JSON with Person data, where are id of an existing person and no keys and parameters of the authentication methods.
It has similarities to update part of IL.Update-person-request (w/o declaration) process, but there are some main differences:
Person_request record is created in BE directly in status
SIGNED
based on obtainedsigned_content
(which is signed with digital signrature) from FE. Without interim records to DB with such statuses asNEW
,APPROVED
.During update process of Person’s personal data in
MPI.person
table, there is no need in ONLINE/OFFLINE approve from Person.There are two new parameters for controlling level of changes and avoid risks of unnecessary automatic deduplication:
PERSON_ONLINE_DEDUPLICATION_UPDATE_SCORE_NHS_ADMIN
PERSON_ONLINE_DEDUPLICATION_MATCH_SCORE_NHS_ADMIN
This parameters might be turned on/off byPERSON_ONLINE_DEDUPLICATION_UPDATE_SCORE_NHS_ACTIVE
=true
PERSON_ONLINE_DEDUPLICATION_MATCH_SCORE_NHS_ACTIVE
=true
There are additional mandatory fields in the message:
nhs_request_number nhs_request_comment
And there are other differences in fields, values and controls:
$.patient_signed
and$.process_disclosure_data_consent
should be absent in Message and thereforenull
value should be set inIL.person_requests
. And finally inMPI.persons
table those values should not be overwritten.print-form is not necessary
IL.person_requests.(new record).channel = 'NHS'
One more additional parameter is transferred from FE to BE
updatedAtForValidation
second_name
andunzr
can be set tonull
.no_tax_id
andtax_id
can be transferred in the message asnull
, if they are set both tonull
.
Process is synchronous. If all validations are successfully completed, the synchronous process of update a person starts by processing the message.
Scope and roles
Scope name | Roles | Description |
---|---|---|
New
|
| Scope for creation of |
Related articles
# | Path | Link and Article |
---|---|---|
1 | E-Health > Persons > Ідентифіковані персони > Person Requests Technical Requirements | IL.Create/Update person request (w/o declaration) |
2 | Public. Medical Service Provider Integration Layer > Person Requests |
Authorize
Verify the validity of access token
Return 401 in case validation fails
Check user scopes
person_request:write_nhs
Return 403 in case invalid scope(s)
Digital signature
Decode content that is encrypted in an electronic digital signature.
Use Digital signature WS. Method checks digital signature and returns result.
See service specification
Validate DRFO
Check that DRFO in Certificate details exists and not empty
Check that DRFO in Certificate details is equal to DRFO in Party
Get party.tax_id using employee_id in person payload
Compare DRFO in Certificate with party.tax_id
Convert DRFO and TAX_ID to uppercase
Compare DRFO and TAX_ID as Cyrillic letters
Convert DRFO to Cyrillic and compare as Cyrillic letters
In case validation fails - generate 422 error
Latin to Cyrillic mapping
Validation of Signed Content
Get global parameters
For futher validation, Invoke Global parameters to get following parameter:
no_self_auth_age
cURL example
Validation | |
---|---|
1 | Validate parallel editings (new)Whether Person data were not changed by other users (MSP, NHS) of NHS system. By preliminary keeping value
|
2 | Validate Person’s status id in DB and deduplication controls
|
3 | Check “patient_signed” flag.This field should not be transferred. And therefore BE should not overwrite this field in DB |
4 | Check “process_disclosure_data_consent” flag.This field should not be transferred. And therefore BE should not overwrite this field in DB |
5 | Validate confidant person
Validate confidant person age >= prm.global_parameters.no_self_auth_age:
validate presence of a secret word:
|
6 | Validate "tax_id"
|
7 | Check "no_tax_id" flag
|
8 | Validate person documents
|
9 | Validate NHS request fields
|
JSON validation schema
What should be other for NHS Admin Panel
As a basis this JSON Schema validator (Create/Update person request | Update person request ) is used. Except:
“
patient_signed
" and "process_disclosure_data_consent
" are not required and should not be present.allow
null
value insecond_name
field of the Person object."second_name": { "type": [ "string", "null" ] }
allow null value in
unzr
field of the Person object"unzr": { "type": [ "string", "null" ], "pattern": "^[0-9]{8}-[0-9]{5}$" }
allow in message both tax_id, no_tax_id with
null
values if they are both set tonull
updatedAtForValidation
key and grouping keynhs_request_number
,nhs_request_comment
are validated with the following validation Schema:
Execution
Search pending person_requests in IL.person_requests
Search persons request in IL.person_requests to prevent inconsistent parallel updates:
Cancel person_requests records in IL.person_requests
Change status of all found person requests:
Create new record in IL.person_requests
Insert
[new record]
toIL.person_requests
:Set
status = 'SIGNED
'.Set Person’s id,
person_id = $.person.id
Set
inserted_at= now()
(Get current date-time)Set
inserted_by
- user_id (Extract user from token)Set
channel
,IL.person_request.(newrecord).channel = 'NHS'
Set
printout_form
= null
Store signed_content
in appropriate Person_request Bucket.
Update Person in MPI.persons
Update Person’s data in
MPI.persons.(id = $.person.id)
with submitted new data$
(including two$.nhs_request_number
and$.nhs_request_comment
).Set
updated_at
- now() (Get current date-time)Set
updated_by
- user_id (Extract user from token)Create appropriate records based on submitted new data
$
(including two$.nhs_request_number
and$.nhs_request_comment
) in:MPI.person_documents
MPI.person_phones
MPI.person_addresses
Submit person on verification
Create or update existing record in person_verifications table for a person according to logic in sections below. Also, set:
updated_at = now()
updated_by = user uuid
inserted_at = now() (for new records)
inserted_by = user uuid (for new records)
Manual NHS verification
Set person verification according to logic Sign person request | Manual NHS verification
DRFO registry verification
Set person verification according to logic Sign person request | DRFO registry verification
DRACS death acts registry verification
Set person verification according to logic Sign person request | DRACS death acts registry verification
Calculate cumulative verification status
Calculate persons cumulative verification status according to logic Sign person request | Calculate cumulative verification status
ЕСОЗ - публічна документація