Skip to content

Instantly share code, notes, and snippets.

@evliu
Last active April 30, 2016 03:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evliu/53bf1b49482ae8014af56f54af3158b1 to your computer and use it in GitHub Desktop.
Save evliu/53bf1b49482ae8014af56f54af3158b1 to your computer and use it in GitHub Desktop.
medicationOrderFHIRTest.json
[
{
"resourceType": "MedicationOrder",
"identifier": [
{
"value": "SomeMedicaitonOrderUniqueIdentifier"
}
],
"dateWritten": "2016-01-15",
"status": "active",
"prescriber": {
"display": "Dr. Andy Yeung"
},
"medicationReference": {
"display": "Twinkies"
},
"dosageInstruction": [
{
"text": "Eat one, twice daily",
"additionalInstructions": {
"text": "Before and after lunch"
},
"timing": {
"repeat": {
"frequency": 2,
"period": 1,
"periodUnits": "d"
}
},
"asNeededBoolean": false
}
]
},
{
"resourceType": "MedicationOrder",
"identifier": [
{
"value": "AnotherMedicaitonOrderUniqueIdentifier"
}
],
"dateWritten": "2016-01-15",
"status": "active",
"prescriber": {
"display": "Dr. Andy Yeung"
},
"medicationReference": {
"display": "Menthol"
},
"dosageInstruction": [
{
"text": "Take 10mg five times daily",
"additionalInstructions": {
"text": "before meals"
},
"timing": {
"repeat": {
"frequency": 5,
"period": 1,
"periodUnits": "d"
}
},
"asNeededBoolean": false
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment