Advertisement
Guest User

Untitled

a guest
Apr 30th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. [
  2. {
  3. "resourceType": "MedicationOrder",
  4. "identifier": [
  5. {
  6. "value": "SomeMedicaitonOrderUniqueIdentifier"
  7. }
  8. ],
  9. "dateWritten": "2016-01-15",
  10. "status": "active",
  11. "prescriber": {
  12. "display": "Dr. Andy Yeung"
  13. },
  14. "medicationReference": {
  15. "display": "Twinkies"
  16. },
  17. "dosageInstruction": [
  18. {
  19. "text": "Eat one, twice daily",
  20. "additionalInstructions": {
  21. "text": "Before and after lunch"
  22. },
  23. "timing": {
  24. "repeat": {
  25. "frequency": 2,
  26. "period": 1,
  27. "periodUnits": "d"
  28. }
  29. },
  30. "asNeededBoolean": false
  31. }
  32. ]
  33. },
  34. {
  35. "resourceType": "MedicationOrder",
  36. "identifier": [
  37. {
  38. "value": "AnotherMedicaitonOrderUniqueIdentifier"
  39. }
  40. ],
  41. "dateWritten": "2016-01-15",
  42. "status": "active",
  43. "prescriber": {
  44. "display": "Dr. Andy Yeung"
  45. },
  46. "medicationReference": {
  47. "display": "Menthol"
  48. },
  49. "dosageInstruction": [
  50. {
  51. "text": "Take 10mg five times daily",
  52. "additionalInstructions": {
  53. "text": "before meals"
  54. },
  55. "timing": {
  56. "repeat": {
  57. "frequency": 5,
  58. "period": 1,
  59. "periodUnits": "d"
  60. }
  61. },
  62. "asNeededBoolean": false
  63. }
  64. ]
  65. }
  66. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement