Examples

Patient

Below is an example of the Patient resource Maria Rossi:

Patient

Below is the corresponding structure in JSON format:

{
    "resourceType": "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"
        },
        {
            "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

Below is the corresponding structure in JSON format:

{
    "resourceType": "Observation",
    "meta": {
        "lastUpdated": "2021-06-10T10: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": "2021-06-10T10: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

Below is the corresponding structure in JSON format:

{
    "resourceType": "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"
    },
    "effectiveDateTime": "2020-10-27T16:10:20",
    "performer":  [
        {
            "type": "Practitioner"
        }
    ],
    "valueQuantity": {
        "value": 62,
        "unit": "kilogram",
        "system": "http://unitsofmeasure.org",
        "code": "kg"
    }
}