-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimpleData.http
77 lines (74 loc) · 2.15 KB
/
SimpleData.http
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
### Post 'Simple Data"
POST http://localhost:8080/evaluate
#POST https://plan-def-evaluator.pathcheck.org/evaluate
Content-Type: application/json
{
"planDefinitionUrl": "http://localhost/PlanDefinition/Test-PlanDefinitionCondition-1.0.0",
"subject": "Test-Patient",
"encounterID": "Test-Encounter",
"data" : {
"resourceType": "Bundle",
"id": "ConditionalPlanDef-Data-1.0.0",
"type": "transaction",
"entry": [
{
"resource": {
"resourceType": "Patient",
"id": "Test-Patient",
"gender": "female"
},
"request": {
"method": "PUT",
"url": "Patient/ConditionalPlanDef-Test-Patient"
}
},
{
"resource": {
"resourceType": "Encounter",
"id": "Test-Encounter",
"status": "in-progress",
"subject": {
"reference": "Patient/Test-Patient"
}
},
"request": {
"method": "PUT",
"url": "Encounter/ConditionalPlanDef-Test-Encouter"
}
},
{
"resource": {
"resourceType": "ActivityDefinition",
"id": "MedicationRequest-1",
"url": "http://localhost/ActivityDefinition/MedicationRequest-1",
"status": "active",
"kind": "MedicationRequest",
"productCodeableConcept": {
"text": "Medication 1"
}
},
"request": {
"method": "PUT",
"url": "ActivityDefinition/ConditionalPlanDef-MedicationRequest-1.0.0"
}
},
{
"resource": {
"resourceType": "PlanDefinition",
"id": "Test-PlanDefinitionCondition-1.0.0",
"url": "http://localhost/PlanDefinition/Test-PlanDefinitionCondition-1.0.0",
"status": "active",
"action": [
{
"definitionCanonical": "http://localhost/ActivityDefinition/MedicationRequest-1"
}
]
},
"request": {
"method": "PUT",
"url": "PlanDefinition/ConditionalPlanDef-PlanDefinition-1.0.0"
}
}
]
}
}