Created
February 28, 2024 08:07
-
-
Save brianraila/87c4ac3c6b9374d65ec96d14fad90d5f to your computer and use it in GitHub Desktop.
Sample eCHIS Service Request
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
{ | |
"resourceType": "ServiceRequest", | |
"identifier": [ | |
{ | |
"system": "https://example.com/medic/", | |
"value": "123456789" | |
} | |
], | |
"status": "in-progress", | |
"intent": "order", | |
"category": [ | |
{ | |
"coding": [ | |
{ | |
"system": "http://example.com/coding/system", | |
"code": "12345", | |
"display": "Dummy Clinic" | |
} | |
], | |
"text": "Consultation" | |
} | |
], | |
"priority": "urgent", | |
"subject": { | |
"reference": "https://clientregistry.example.com/patient/ABC123", | |
"type": "Patient", | |
"display": "ABC123", | |
"identifier": { | |
"use": "official", | |
"system": "https://clientregistry.example.com/patient/ABC123", | |
"value": "ABC123" | |
} | |
}, | |
"occurrencePeriod": { | |
"resourceType": "Period", | |
"start": "2024-02-28", | |
"end": "2024-03-15" | |
}, | |
"authoredOn": "2024-02-28T12:00:00.000000Z", | |
"requester": { | |
"reference": "https://khmflchul.example.com?format=JSON&code=CHU001", | |
"type": "Organization", | |
"display": "CHU001", | |
"identifier": { | |
"use": "official", | |
"system": "https://khmflchul.example.com?format=JSON&code=CHU001", | |
"value": "CHU001" | |
} | |
}, | |
"performer": [ | |
{ | |
"reference": "https://khmflfacility.example.com?format=JSON&code=FAC001", | |
"type": "Organization", | |
"display": "FAC001", | |
"identifier": { | |
"use": "official", | |
"system": "https://khmflfacility.example.com?format=JSON&code=FAC001", | |
"value": "FAC001" | |
} | |
} | |
], | |
"reasonCode": [ | |
{ | |
"coding": [ | |
{ | |
"system": "http://example.com/reasoncode/system", | |
"code": "54321", | |
"display": "Dummy Reason" | |
} | |
], | |
"text": "Dummy Reason" | |
} | |
], | |
"note": "Dummy notes for the service request" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment