Resource Type
stringclasses 10
values | FHIR Resource
stringclasses 10
values |
|---|---|
procedure.json
|
{ "resourceType": "Procedure", "id": "<Placeholder: diisi setelah procedures tersedia>"}
|
practitioner.json
|
{ "resourceType": "Practitioner", "id": "<Practitioner ID>", "active": true, "name": [ { "use": "official", "text": "<Practitioner Full Name>" } ], "telecom": [ { "system": "phone", "value": "<Practitioner Phone Number>" } ]}
|
diagnostic_report.json
|
{ "resourceType": "DiagnosticReport", "id": "<Placeholder: diisi setelah hasil pemeriksaan tersedia>"}
|
encounter.json
|
{ "resourceType": "Encounter", "id": "<Encounter ID>", "status": "finished", "subject": { "reference": "Patient/<Patient ID>" }, "participant": [ { "type": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/encounter-participant-type", "code": "TPA" } ] } ], "actor": { "reference": "Practitioner/<Practitioner ID>" } } ], "reasonCode": [ { "coding": [ { "system": "<Reason Code System>", "code": "<Reason Code>" } ] } ]}
|
patients.json
|
{ "resourceType": "Patient", "id": "<Patient ID>", "active": true, "name": [ { "use": "official", "text": "<Patient Full Name>" } ], "telecom": [ { "system": "phone", "value": "<Patient Phone Number>" }, { "system": "email", "value": "<Patient Email Address>" } ], "birthDate": "<Patient Date of Birth>", "gender": "<Patient Gender>", "maritalStatus": { "coding": [ { "system": "<Marital Status Coding System>", "code": "<Marital Status Code>" } ] }, "address": [ { "use": "home", "text": "<Patient Address>" } ]}
|
observation.json
|
{ "resourceType": "Observation", "id": "<Observation ID>", "status": "final", "subject": { "reference": "Patient/<Patient ID>" }, "category": { "coding": [ { "system": "<Observation Category Coding System>", "code": "<Observation Category Code>" } ] }, "code": { "coding": [ { "system": "<Observation Code System>", "code": "<Observation Code>" } ] }, "value": "<Observation Value>"}
|
medication_request.json
|
{ "resourceType": "MedicationRequest", "id": "<Placeholder: diisi setelah prescription details tersedia>"}
|
allergy.json
|
{ "AllergyIntolerance": { "resourceType": "AllergyIntolerance", "id": "<AllergyIntolerance ID>", "patient": { "reference": "Patient/<Patient ID>" }, "substance": { "coding": [] } }}
|
careplan.json
|
{ "resourceType": "CarePlan", "id": "<Placeholder: diisi setelah care plan tersedia>"}
|
condition.json
|
{ "resourceType": "Condition", "id": "<Placeholder: diisi setelah diagnosis tersedia>"}
|
README.md exists but content is empty.
- Downloads last month
- 23