Example Export

In the settings page of each product, patients can export relevant data as a single json file. For this purpose, the FHIR® resource describes in this implementation guide are used. The JavaScript Object Notation (JSON) is a standardized, open, text-based format for displaying structured data.

Example export

Fictional example of an export:

{
    "resourceType": "Bundle",
    "identifier": {
        "use": "official",
        "value": "DIGA",
        "period": {
            "start": "2021-10-08T11:27:40.146Z"
        }
    },
    "type": "collection",
    "timestamp": "2021-10-08T11:27:40.146Z",
    "entry":  [
        {
            "fullUrl": "6141f7fae3c602004ebae526",
            "resource": {
                "resourceType": "Patient",
                "identifier":  [
                    {
                        "use": "official",
                        "value": "6141f7fae3c602004ebae526",
                        "period": {
                            "start": "2021-09-15T13:41:14.350Z"
                        }
                    }
                ],
                "id": "6141f7fae3c602004ebae526",
                "active": true,
                "name":  [
                    {
                        "given": "Mateo",
                        "family": "Vidal",
                        "text": "Mateo Vidal",
                        "use": "usual"
                    }
                ],
                "telecom":  [
                    {
                        "system": "email",
                        "value": "mateovidal@xxyy.com",
                        "use": "work"
                    }
                ],
                "gender": "male",
                "birthDate": "6/1/1993"
            }
        },
        {
            "fullUrl": "6141f91ab6d89c004fd79f12",
            "resource": {
                "resourceType": "Observation",
                "id": "6141f91ab6d89c004fd79f12",
                "status": "final",
                "category":  [
                    {
                        "coding":  [
                            {
                                "system": "http://terminology.hl7.org/CodeSystem/observation-category",
                                "code": "survey",
                                "display": "Survey"
                            }
                        ]
                    }
                ],
                "subject": {
                    "reference": "Patient/6141f7fae3c602004ebae526",
                    "display": "Mateo Vidal",
                    "type": "patient"
                },
                "effectiveDateTime": "2021-08-15T00:00:00.000Z",
                "valueInteger": 8,
                "code": {
                    "coding":  [
                        {
                            "system": "http://loinc.org",
                            "code": "94328-2",
                            "display": "Patient Health Questionnaire 8 item (PHQ-8) total score [Reported]"
                        }
                    ],
                    "text": "PHQ-8 depression assessment panel."
                },
                "interpretation":  [
                    {
                        "coding":  [
                            {
                                "system": "http://loinc.org",
                                "code": "89193-7",
                                "display": "Patient reported outcome measure score interpretation"
                            }
                        ],
                        "text": "Score range from 0 to 24. Scores of 5, 10, 15, and 20 represent cut-points for mild, moderate, moderately severe and severe depression."
                    }
                ]
            }
        },
        {
            "fullUrl": "6141f9209b5188004e1059a4",
            "resource": {
                "resourceType": "Observation",
                "id": "6141f9209b5188004e1059a4",
                "status": "final",
                "category":  [
                    {
                        "coding":  [
                            {
                                "system": "http://terminology.hl7.org/CodeSystem/observation-category",
                                "code": "survey",
                                "display": "Survey"
                            }
                        ]
                    }
                ],
                "subject": {
                    "reference": "Patient/6141f7fae3c602004ebae526",
                    "display": "Mateo Vidal",
                    "type": "patient"
                },
                "effectiveDateTime": "2021-08-15T00:00:00.000Z",
                "valueInteger": 7,
                "code": {
                    "coding":  [
                        {
                            "system": "http://loinc.org",
                            "code": "89196-0",
                            "display": "Patient reported outcome measure panel"
                        }
                    ],
                    "text": "PSS-4 perceived stress scale assessment panel."
                },
                "interpretation":  [
                    {
                        "coding":  [
                            {
                                "system": "http://loinc.org",
                                "code": "89193-7",
                                "display": "Patient reported outcome measure score interpretation"
                            }
                        ],
                        "text": "Scores range from 0 to 27, where higher values rare correlated to more stress."
                    }
                ]
            }
        },
        {
            "fullUrl": "6141f914b6d89c004fd79f07",
            "resource": {
                "resourceType": "Observation",
                "id": "6141f914b6d89c004fd79f07",
                "status": "final",
                "category":  [
                    {
                        "coding":  [
                            {
                                "system": "http://terminology.hl7.org/CodeSystem/observation-category",
                                "code": "survey",
                                "display": "Survey"
                            }
                        ]
                    }
                ],
                "subject": {
                    "reference": "Patient/6141f7fae3c602004ebae526",
                    "display": "Mateo Vidal",
                    "type": "patient"
                },
                "effectiveDateTime": "2021-08-15T00:00:00.000Z",
                "valueInteger": 8,
                "code": {
                    "coding":  [
                        {
                            "system": "http://loinc.org",
                            "code": "70274-6",
                            "display": "Generalized anxiety disorder 7 item (GAD-7) total score [Reported.PHQ]"
                        }
                    ],
                    "text": "Generalized anxiety disorder 7 item total score"
                },
                "interpretation":  [
                    {
                        "coding":  [
                            {
                                "system": "http://loinc.org",
                                "code": "89193-7",
                                "display": "Patient reported outcome measure score interpretation"
                            }
                        ],
                        "text": "The GAD-7 scale score ranges from 0 to 21. A score of 10 or greater represents a reasonable cut point for identifying cases of GAD. Cut points of 5, 10, and 15 might be interpreted as representing mild, moderate, and severe levels of anxiety."
                    }
                ]
            }
        }
    ]
}