-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
issue #3805 - fix FHIRPath evaluator string function error handling
Signed-off-by: Prasanna Hegde <prasanna.hegde1@ibm.com>
- Loading branch information
1 parent
f1ce72a
commit e2d2eec
Showing
12 changed files
with
351 additions
and
44 deletions.
There are no files selected for viewing
105 changes: 105 additions & 0 deletions
105
fhir-examples/src/main/resources/json/spec/appointment-example3.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
{ | ||
"resourceType": "Appointment", | ||
"id": "examplereq", | ||
"text": { | ||
"status": "generated", | ||
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Brian MRI results discussion</div>" | ||
}, | ||
"identifier": [ | ||
{ | ||
"system": "http://example.org/sampleappointment-identifier", | ||
"value": "123" | ||
} | ||
], | ||
"status": "proposed", | ||
"serviceCategory": [ | ||
{ | ||
"coding": [ | ||
{ | ||
"system": "http://example.org/service-category", | ||
"code": "gp", | ||
"display": "General Practice" | ||
} | ||
] | ||
} | ||
], | ||
"specialty": [ | ||
{ | ||
"coding": [ | ||
{ | ||
"system": "http://snomed.info/sct", | ||
"code": "394814009", | ||
"display": "General practice" | ||
} | ||
] | ||
} | ||
], | ||
"appointmentType": { | ||
"coding": [ | ||
{ | ||
"system": "http://terminology.hl7.org/CodeSystem/v2-0276", | ||
"code": "WALKIN", | ||
"display": "A previously unscheduled walk-in visit" | ||
} | ||
] | ||
}, | ||
"reasonCode": [ | ||
{ | ||
"coding": [ | ||
{ | ||
"system": "http://snomed.info/sct", | ||
"code": "413095006" | ||
} | ||
], | ||
"text": "Clinical Review" | ||
} | ||
], | ||
"priority": 5, | ||
"description": "Discussion on the results of your recent MRI", | ||
"minutesDuration": 15, | ||
"slot": [ | ||
{ | ||
"reference": "Slot/example" | ||
} | ||
], | ||
"created": "2015-12-02", | ||
"comment": "Further expand on the results of the MRI and determine the next actions that may be appropriate.", | ||
"participant": [ | ||
{ | ||
"actor": { | ||
"reference": "Patient/example", | ||
"display": "Peter James Chalmers" | ||
}, | ||
"required": "required", | ||
"status": "needs-action" | ||
}, | ||
{ | ||
"type": [ | ||
{ | ||
"coding": [ | ||
{ | ||
"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", | ||
"code": "ATND" | ||
} | ||
] | ||
} | ||
], | ||
"required": "required", | ||
"status": "needs-action" | ||
}, | ||
{ | ||
"actor": { | ||
"reference": "Location/1", | ||
"display": "South Wing, second floor" | ||
}, | ||
"required": "required", | ||
"status": "accepted" | ||
} | ||
], | ||
"requestedPeriod": [ | ||
{ | ||
"start": "2016-06-02", | ||
"end": "2016-06-09" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.