Get a list of questionnaires

get

/Questionnaire/

Retrieves a list of questionnaires that meet supplied query parameters.

Authorization Types

This resource supports the following authorization types:

Request

Query Parameters
Header Parameters
Back to Top

Response

Supported Media Types

200 Response

OK

Headers
Body
Example Response (application/fhir+json)
{
    "resourceType":"Bundle",
    "id":"902e1b49-b9c4-4786-b90b-c9612d478f2a",
    "type":"searchset",
    "link":[
        {
            "relation":"self",
            "url":"https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Questionnaire?_id=SH-12508041"
        }
    ],
    "entry":[
        {
            "fullUrl":"https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/Questionnaire/SH-12508041",
            "resource":{
                "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