Get a questionnaire by ID

get

/Questionnaire/{id}

Retrieves a questionnaire by the associated ID.

Authorization Types

This operation supports the following authorization types:

Request

Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

200 Response

OK

Headers
Body
Example Response (application/fhir+json)
{
    "resourceType":"Questionnaire",
    "id":"SH-12508041",
    "name":"Social_History",
    "title":"Social History",
    "status":"active",
    "subjectType":[
        "Patient"
    ],
    "item":[
        {
            "linkId":"93",
            "extension":[
                {
                    "valueBoolean":true,
                    "url":"https://fhir-ehr.cerner.com/r4/StructureDefinition/note-allowed"
                }
            ],
            "text":"Tobacco",
            "type":"group",
            "item":[
                {
                    "linkId":"93-6930356",
                    "text":"Tobacco use per day:",
                    "type":"text",
                    "required":false,
                    "repeats":false,
                    "maxLength":255
                },
                {
                    "linkId":"93-6930316",
                    "text":"Number of years:",
                    "type":"quantity",
                    "required":false,
                    "repeats":false
                },
                {
                    "linkId":"93-6930360",
                    "text":"Started at age:",
                    "type":"quantity",
                    "required":false,
                    "repeats":false
                },
                {
                    "linkId":"93-6930364",
                    "text":"Stopped at age:",
                    "type":"quantity",
                    "required":false,
                    "repeats":false
                },
                {
                    "linkId":"93-6930372",
                    "text":"Ready to change:",
                    "type":"choice",
                    "required":false,
                    "repeats":false,
                    "answerOption":[
                        {
                            "valueCoding":{
                                "system":"https://fhir.cerner.com/a758f80e-aa74-4118-80aa-98cc75846c76/nomenclature",
                                "code":"960439",
                                "display":"Yes"
                            }
                        },
                        {
                            "valueCoding":{
                                "system":"https://fhir.cerner.com/a758f80e-aa74-4118-80aa-98cc75846c76/nomenclature",
                                "code":"960441",
                                "display":"No"
                            }
                        }
                    ]
                },
                {
                    "linkId":"93-6930376",
                    "text":"Concerns about tobacco use in household:",
                    "type":"open-choice",
                    "required":false,
                    "repeats":false,
                    "maxLength":255,
                    "answerOption":[
                        {
                            "valueCoding":{
                                "system":"https://fhir.cerner.com/a758f80e-aa74-4118-80aa-98cc75846c76/nomenclature",
                                "code":"960439",
                                "display":"Yes"
                            }
                        },
                        {
                            "valueCoding":{
                                "system":"https://fhir.cerner.com/a758f80e-aa74-4118-80aa-98cc75846c76/nomenclature",
                                "code":"960441",
                                "display":"No"
                            }
                        }
                    ]
                },
                {
                    "linkId":"93-6930380",
                    "text":"Total pack years:",
                    "type":"quantity",
                    "required":false,
                    "repeats":false
                },
                {
                    "extension":[
                        {
                            "valueInteger":2,
                            "url":"http://hl7.org/fhir/StructureDefinition/maxDecimalPlaces"
                        }
                    ],
                    "linkId":"93-4356884",
                    "text":"Weight",
                    "type":"quantity",
                    "required":false,
                    "repeats":false,
                    "maxLength":6
                }
            ]
        }
    ]
}

Default Response

An OperationOutcome describing any error that occurred.

Headers
Body ()
Root Schema : schema
Type: object
Show Source
Nested Schema : issue
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : details
Type: object
Show Source
Nested Schema : location
Type: array
Show Source
Nested Schema : coding
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top