Skip to content

Patient Report Outcomes

We are building the patient report template, so that patients can see your questionnaire in their mobile application. Let´s start by checking out the directory /1-creating-clinical-content/2-example-without-choices and opening the file patient-report-template.json. The only difference to a document template is the "code": "patient-report" in line 48. Now, you only have to modify the highlighted lines by replacing the snippets, which are written in capital letters.

patient-report-template.json


 
 
 
 




 











 





 
























{
    "resourceType": "PlanDefinition",
    "url": "https://dotbase.org/fhir/PlanDefinition/PATIENT-REPORT-TEMPLATE-ID",
    "title": "PATIENT-REPORT-TEMPLATE-TITLE",
    "id": "parkinson-plandefinition-PATIENT-REPORT-TEMPLATE-ID",
    "description": "PATIENT-REPORT-TEMPLATE-DESCRIPTION",
    "status": "active",
    "publisher": "Charité – Universitätsmedizin Berlin",
    "action": [
      {
        "title": "SECTION-TEMPLATE-TITLE",
        "code": [
          {
            "coding": [
              {
                "system": "https://dotbase.org/fhir/CodeSystem/section-template-type",
                "code": "questionnaire",
                "display": "Questionnaire"
              }
            ]
          }
        ],
        "definitionCanonical": "https://dotbase.org/fhir/Questionnaire/SECTION-TEMPLATE-ID",
        "_definitionCanonical": {
          "extension": [
            {
              "url": "https://dotbase.org/fhir/StructureDefinition/definition-canonical-reference",
              "valueReference": {
                "reference": "Questionnaire/SECTION-TEMPLATE-ID"
              }
            }
          ]
        }
      }
    ],
    "extension": [
      {
        "url": "https://dotbase.org/fhir/StructureDefinition/document-template-maintainer",
        "valueReference": {
          "reference": "Organization/dotbase-organization-mainorganization"
        }
      }
    ],
    "topic": {
      "coding": [
        {
          "system": "https://dotbase.org/fhir/CodeSystem/document-template-type",
          "code": "patient-report"
        }
      ]
    }
  }