Ací es mostren les diferències entre la revisió seleccionada i la versió actual de la pàgina.
Ambdós costats versió prèvia Revisió prèvia Següent revisió | Revisió prèvia | ||
es:contenidos:estandares:ejemplofhir [2019/07/04 15:34] jcobos |
es:contenidos:estandares:ejemplofhir [2020/05/04 12:29] (actual) jcobos [Ejemplo de caso en FHIR] |
||
---|---|---|---|
Línia 1: | Línia 1: | ||
====== Ejemplo de caso en FHIR ====== | ====== Ejemplo de caso en FHIR ====== | ||
+ | En esta página se muestra un ejemplo de codificación de los datos de cada recurso FHIR de los siguientes datos de un paciente: | ||
+ | Datos Personales, Alergias, Condiciones, Medicación e Inmunización | ||
+ | |||
+ | |||
+ | |||
===== Paciente ===== | ===== Paciente ===== | ||
Línia 99: | Línia 104: | ||
} | } | ||
+ | ===== Condiciones ===== | ||
+ | |||
+ | |||
+ | { | ||
+ | "resourceType": "Condition", | ||
+ | "id": "U2-1", | ||
+ | "clinicalStatus": { | ||
+ | "coding": [ | ||
+ | { | ||
+ | "system": "http://hl7.org/fhir/ValueSet/condition-clinical", | ||
+ | "code": "active", | ||
+ | "display": "Active" | ||
+ | } | ||
+ | ] | ||
+ | }, | ||
+ | "code": { | ||
+ | "coding": [ | ||
+ | { | ||
+ | "system": "http://snomed.info/sct", | ||
+ | "code": "10509002", | ||
+ | "display": "Acute bronchitis" | ||
+ | } | ||
+ | ], | ||
+ | "text": "Acute bronchitis" | ||
+ | }, | ||
+ | "subject": { | ||
+ | "reference": "Patient/U2" | ||
+ | }, | ||
+ | "onsetDateTime": "2019-03-25", | ||
+ | "asserter": { | ||
+ | "reference": "Practitioner/P1" | ||
+ | } | ||
+ | } | ||
+ | |||
+ | ===== Medicación ===== | ||
+ | |||
+ | { | ||
+ | "resourceType": "MedicationStatement", | ||
+ | "id": "U2-1", | ||
+ | "status": "active", | ||
+ | "medicationCodeableConcept": { | ||
+ | "coding": [ | ||
+ | { | ||
+ | "system": "http://snomed.info/sct", | ||
+ | "code": "320180009", | ||
+ | "display": "Salbutamol 100mg/20mL nebulizer solution (product)" | ||
+ | } | ||
+ | ], | ||
+ | "text": "Salbutamol 100mg/20mL nebulizer solution (product)" | ||
+ | }, | ||
+ | "subject": { | ||
+ | "reference": "Patient/U2", | ||
+ | "display": "Angela UTT" | ||
+ | }, | ||
+ | "effectivePeriod": { | ||
+ | "start": "1993-05-02" | ||
+ | }, | ||
+ | "dosage": [ | ||
+ | { | ||
+ | "text": "10 mg/day", | ||
+ | "timing": { | ||
+ | "repeat": { | ||
+ | "frequency": 1, | ||
+ | "period": 1, | ||
+ | "periodUnit": "d" | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | ] | ||
+ | } | ||
+ | |||
+ | ===== Inmunización ===== | ||
+ | |||
+ | { | ||
+ | "resourceType": "Immunization", | ||
+ | "id": "U2-1", | ||
+ | "status": "completed", | ||
+ | "vaccineCode": { | ||
+ | "coding": [ | ||
+ | { | ||
+ | "system": "http://snomed.info/sct", | ||
+ | "code": "14745005" | ||
+ | } | ||
+ | ], | ||
+ | "text": "Hepatitis A virus vaccine" | ||
+ | }, | ||
+ | "patient": { | ||
+ | "reference": "Patient/U2" | ||
+ | }, | ||
+ | "primarySource": true, | ||
+ | "expirationDate": "2015-02-15", | ||
+ | "site": { | ||
+ | "coding": [ | ||
+ | { | ||
+ | "system": "http://terminology.hl7.org/CodeSystem/v3-ActSite", | ||
+ | "code": "LA", | ||
+ | "display": "left arm" | ||
+ | } | ||
+ | ] | ||
+ | }, | ||
+ | "route": { | ||
+ | "coding": [ | ||
+ | { | ||
+ | "system": "http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration", | ||
+ | "code": "IM", | ||
+ | "display": "Injection, intramuscular" | ||
+ | } | ||
+ | ] | ||
+ | }, | ||
+ | "note": [ | ||
+ | { | ||
+ | "text": "Notes on adminstration of vaccine" | ||
+ | } | ||
+ | ] | ||
+ | } |