/
Plantillas Recursos FHIR R4
Plantillas Recursos FHIR R4
Recursos
Patient
{
"resourceType": "Patient",
"id": "example",
"identifier": [],
"active": true,
"name": [],
"telecom": [],
"gender": "male",
"birthDate": "1974-12-25",
"deceasedBoolean": false,
"address": [],
"contact": []
}
Practitioner
{
"resourceType": "Practitioner",
"id": "example",
"identifier": [
{
"system": "http://www.acme.org/practitioners",
"value": "23"
}
],
"active": true,
"name": [
{
"family": "Careful",
"given": [
"Adam"
],
"prefix": [
"Dr"
]
}
],
"address": [
{
"use": "home",
"line": [
"534 Erewhon St"
],
"city": "PleasantVille",
"state": "Vic",
"postalCode": "3999"
}
],
"qualification": [
{
"identifier": [
{
"system": "http://example.org/UniversityIdentifier",
"value": "12345"
}
],
"code": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v2-0360/2.7",
"code": "BS",
"display": "Bachelor of Science"
}
],
"text": "Bachelor of Science"
},
"period": {
"start": "1995"
},
"issuer": {
"display": "Example University"
}
}
]
}
Observation
{
"resourceType": "Observation",
"status": "final",
"code": {
"coding": []
},
"subject": {
"reference": "Patient/<id>"
},
"performer": [
{
"reference": "Practitioner/<id>"
}
],
"interpretation": []
}
Appointment
{
"resourceType": "Appointment",
"id": "example",
"status": "booked",
"priority": 5,
"description": "Discussion on the results of your recent MRI",
"start": "2013-12-10T09:00:00Z",
"end": "2013-12-10T11:00:00Z",
"created": "2013-10-10",
"comment": "Further expand on the results of the MRI and determine the next actions that may be appropriate.",
"basedOn": [],
"participant": [
{
"actor": {
"reference": "Patient/<id>",
"display": "Peter James Chalmers"
},
"required": "required",
"status": "accepted"
}
]
}
DiagnosticReport
{
"resourceType": "DiagnosticReport",
"id": "f001",
"status": "final",
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "58410-2",
"display": "Complete blood count (hemogram) panel - Blood by Automated count"
}
]
},
"subject": {
"reference": "Patient/<id>",
"display": "P. van den Heuvel"
},
"issued": "2013-05-15T19:32:52+01:00",
"performer": [
{
"reference": "Organization/<id>",
"display": "Burgers University Medical Centre"
}
],
"result": [
{
"reference": "Observation/<id>"
}
],
"conclusion": "Core lab"
}
Encounter
{
"resourceType": "Encounter",
"id": "example",
"status": "in-progress",
"class": {
"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
"code": "IMP",
"display": "inpatient encounter"
},
"subject": {
"reference": "Patient/<id>"
}
}
, multiple selections available,