Examples
Patient
Below is an example of the Patient resource Maria Rossi:
Patient |
meta |
lastUpdated : 2022-04-07T01:00:00 |
profile : http://capable-project.eu/data/fhir/StructureDefinition/Patient_Profile |
identifier |
value : CAPABLE Internal ID |
active : True |
name |
family : Rossi |
given : Maria |
telecom |
system : phone |
value : +393456789102 |
telecom |
system : email |
value : maria.rossi@gmail.com |
gender : female |
birthDate : 1954-11-11 |
contact |
relationship |
coding |
system : http://snomed.info/sct |
code : 133932002 |
display : Caregiver |
name |
family : Verdi |
given : Andrea |
telecom |
system : phone |
value : +393210987654 |
telecom |
system : email |
value : andrea.verdi@gmail.com |
Below is the corresponding structure in JSON format:
{ "resourceType": "Patient", "meta": { "lastUpdated": "04/07/2022 01:00:00", "profile": [ "http://capable-project.eu/data/fhir/StructureDefinition/Patient_Profile" ] }, "identifier": [ { "value": "CAPABLE Internal ID" } ], "active": true, "name": [ { "family": "Rossi", "given": [ "Maria" ] } ], "telecom": [ { "system": "phone", "value": "+393456789102" }, { "system": "email", "value": "maria.rossi@gmail.com" } ], "gender": "female", "birthDate": "1954-11-11", "contact": [ { "relationship": [ { "coding": [ { "system": "http://snomed.info/sct", "code": "133932002", "display": "Caregiver" } ] } ], "name": { "family": "Verdi", "given": [ "Andrea" ] }, "telecom": [ { "system": "phone", "value": "+393210987654" }, { "system": "email", "value": "andrea.verdi@gmail.com" } ] } ] }
Observation
Below is an example of the Observation resource regarding a pruritus episode related to Maria Rossi:
Observation |
meta |
lastUpdated : 2022-03-14T15:11:07 |
profile : http://capable-project.eu/data/fhir/StructureDefinition/Observation_Profile |
identifier |
value : Internal EHR SerialCode |
status : final |
code |
coding |
system : http://snomed.info/sct |
code : 62315008 |
display : Diarrhea |
subject |
reference : Patient/1 |
effective : 2022-03-14T15:11:07 |
performer |
type : Patient |
value |
coding |
system : http://snomed.info/sct |
code : 446421000124109 |
display : Common terminology criteria for adverse events grade 2 |
interpretation |
text : Description level |
note |
text : {"freeNote":"A patient note..."} |
Below is the corresponding structure in JSON format:
{ "resourceType": "Observation", "meta": { "lastUpdated": "06/10/2021 10:54:00" }, "identifier": [ { "value": "Internal EHR SerialCode" } ], "status": "final", "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "279333002", "display": "Pruritus of skin" } ] }, "subject": { "reference": "Patient/1" }, "effectiveDateTime": "06/10/2021 10:54:00", "performer": [ { "type": "Patient" } ], "valueCodeableConcept": { "coding": [ { "system": "http://snomed.info/sct", "code": "446411000124101", "display": "Common terminology criteria for adverse events grade 1" } ] }, "interpretation": [ { "text": "Description level" } ], "bodySite": { "coding": [ { "system": "http://snomed.info/sct", "code": "368208006", "display": "Left upper arm structure" } ] }, "note": [ { "text": "{\"freeNote\":\"Front arm\"}" } ] }
Below is an example of the Observation resource regarding a weight measurement related to Maria Rossi:
Observation |
meta |
lastUpdated : 2020-10-27T16:11:07 |
profile : http://capable-project.eu/data/fhir/StructureDefinition/Observation_Profile |
identifier |
value : Internal EHR SerialCode |
status : final |
code |
coding |
system : http://snomed.info/sct |
code : 27113001 |
display : Body weight |
subject |
reference : Patient/1 |
effective : 2020-10-27T16:10:20 |
performer |
type : Practitioner |
value |
value : 62 |
unit : kilogram |
system : http://unitsofmeasure.org |
code : kg |
Below is the corresponding structure in JSON format:
{ "resourceType": "Observation", "meta": { "lastUpdated": "10/27/2020 16:11:07", "profile": [ "http://capable-project.eu/data/fhir/StructureDefinition/Observation_Profile" ] }, "identifier": [ { "value": "Internal EHR SerialCode" } ], "status": "final", "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "27113001", "display": "Body weight" } ] }, "subject": { "reference": "Patient/1" }, "effectiveDateTime": "10/27/2020 16:10:20", "performer": [ { "type": "Practitioner" } ], "valueQuantity": { "value": 62, "unit": "kilogram", "system": "http://unitsofmeasure.org", "code": "kg" } }