-
Notifications
You must be signed in to change notification settings - Fork 1
/
Workflow-Task-Template.json
75 lines (75 loc) · 1.58 KB
/
Workflow-Task-Template.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"resourceType": "Task",
"id": "<<UUID>>",
"identifier": [
{
"system": "https://tools.ietf.org/html/rfc4122",
"value": "urn:uuid:<<UUID>>"
}
],
"groupIdentifier": {
"system": "https://tools.ietf.org/html/rfc4122",
"value": "urn:uuid:<<UUID>>"
},
"status": "requested",
"intent": "order",
"code": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "3457005",
"display": "Patient referral"
}
]
},
"requester": {
"agent": {
"identifier": {
"system": "https://www.w3.org/ns/did/v1",
"value": "<<FHIR endpoint DID>>"
}
},
"onBehalfOf": {
"identifier": {
"system": "https://www.w3.org/ns/did/v1",
"value": "<<Sending organization DID>>"
}
}
},
"owner": {
"identifier": {
"system": "https://www.w3.org/ns/did/v1",
"value": "<<Receiving organization DID>>"
}
},
"restriction": {
"period": {
"end": "<<Nuts Authorization Credential expiration date>>"
}
},
"input": [
{
"type": {
"coding": [
{
"system": "http://fhir.nl/fhir/NamingSystem/TaskParameter",
"code": "authorization-base"
}
]
},
"valueString": "<<Nuts Authorization Credential DID to access personal FHIR resources>>"
},
{
"type": {
"coding": [
{
"system": "<<System>>",
"code": "<<Code>>",
"display": "<<Display>>"
}
]
},
"valueString": "<<Search URL>>"
}
]
}