Multiple Choice Questions

The FHIR R4 Questionnaires are to be classified as simple single choice questionnaires. The questions are divided into three hierarchical levels according to how much prior knowledge is required to answer them and whether they build on other questions.

Beispiele

{
    "resourceType": "Questionnaire",
    "id": "Questionnaire1",
    "extension":  [
        {
            "url": "https://gb-best-media.charite.de//StructureDefinition/correct-answers",
            "valueReference": {
                "reference": "QuestionnaireResponse/InteragentQuestionnaireResponse2"
            }
        }
    ],
    "title": "Akromioklavikulargelenk",
    "status": "draft",
    "code":  [
        {
            "code": "16982005",
            "system": "http://snomed.info/sct",
            "display": "Shoulder region structure (body structure)",
            "extension":  [
                {
                    "url": "http://hl7.org/fhir/StructureDefinition/ordinalValue",
                    "valueDecimal": 0
                }
            ]
        },
        {
            "code": "272673000",
            "system": "http://snomed.info/sct",
            "display": "Bone structure (body structure)",
            "extension":  [
                {
                    "url": "http://hl7.org/fhir/StructureDefinition/ordinalValue",
                    "valueDecimal": 0
                }
            ]
        }
    ],
    "purpose": "Und was ist hier? Hier ist die Erklärung natürlich!",
    "description": "So sehen Multiple Choice Fragen aus: Dies ist die Vignette der Multiple choice Frage.  Sie kann sogar aufzählungen enthalten Zwei SchulterMM  Quelle: Atlas Prometheus",
    "item":  [
        {
            "text": "Die Articulatio acromioclavicularis (Akromioklavikulargelenk, ACG) ist",
            "type": "choice",
            "linkId": "2131623898461",
            "code":  [
                {
                    "code": "85856004",
                    "system": "http://snomed.info/sct",
                    "display": "Acromioclavicular joint structure (body structure)",
                    "extension":  [
                        {
                            "url": "http://hl7.org/fhir/StructureDefinition/ordinalValue",
                            "valueDecimal": 0
                        }
                    ]
                }
            ],
            "item":  [
                {
                    "text": "Und was ist hier? Hier ist die Erklärung natürlich!",
                    "type": "display",
                    "linkId": "2131623898461_helpText",
                    "extension":  [
                        {
                            "url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl",
                            "valueCodeableConcept": {
                                "text": "Help-Button",
                                "coding":  [
                                    {
                                        "code": "help",
                                        "system": "http://hl7.org/fhir/questionnaire-item-control",
                                        "display": "Help-Button"
                                    }
                                ]
                            }
                        }
                    ]
                }
            ],
            "answerOption":  [
                {
                    "valueString": "morphologisch und funktionell ein Kugelgelenk",
                    "_valueString": {
                        "extension":  [
                            {
                                "url": "http://hl7.org/fhir/StructureDefinition/ordinalValue",
                                "valueDecimal": 0
                            }
                        ]
                    }
                },
                {
                    "valueString": "morphologisch und funktionell ein planes Gelenk",
                    "_valueString": {
                        "extension":  [
                            {
                                "url": "http://hl7.org/fhir/StructureDefinition/ordinalValue",
                                "valueDecimal": 1
                            }
                        ]
                    }
                }
            ],
            "repeats": false,
            "required": true
        }
    ]
}

Answers to the questionnaires are FHIR R4 QuestionnaireResponses. To show which is the correct answer, the "correct" QuestionnaireResponse is referenced in the questionnaire.

{
    "resourceType": "QuestionnaireResponse",
    "id": "InteragentQuestionnaireResponse1",
    "status": "completed",
    "item":  [
        {
            "linkId": "2131623898461",
            "answer":  [
                {
                    "valueString": "morphologisch und funktionell ein Kugelgelenk"
                }
            ]
        }
    ]
}

{
    "resourceType": "QuestionnaireResponse",
    "id": "InteragentQuestionnaireResponse2",
    "status": "completed",
    "item":  [
        {
            "linkId": "2131623898461",
            "answer":  [
                {
                    "valueString": "morphologisch und funktionell ein planes Gelenk"
                }
            ]
        }
    ]
}