Questionnaire _search

post/Questionnaire/_search
Page View

This resource contains a list of questions used to gather information from a patient, provider, or other individual during a patient's course of treatment. The questions may be grouped or listed in a particular order, as well as include any instructional text.

Any answers to the questions are provided with the QuestionnaireResponse resource.

You can review or retrieve healthcare questionnaires.

_search

Query for a patient or provider questionnaire from one organization.

Request parameters and payload

cURL request example

bash
1
curl 'https://api.redoxengine.com/fhir/R4/{destinationSlug}/{environmentFlag}/Questionnaire/_search' \
2
--request POST \
3
--header 'Authorization: Bearer $API_TOKEN' \
4
--header 'Content-Type: application/x-www-form-urlencoded' \
5
--data-urlencode 'date=string' \
6
--data-urlencode 'description=string' \
7
--data-urlencode 'effective=string' \
8
--data-urlencode 'identifier=string' \
9
--data-urlencode 'item-code=string' \
10
--data-urlencode 'name=string' \
11
--data-urlencode 'publisher=string' \
12
--data-urlencode 'questionnaire-code=string' \
13
--data-urlencode 'status=string' \
14
--data-urlencode 'title=string'

Request Body Schema

  • date
    Array of string

    The questionnaire publication date

  • description
    Array of string

    The description of the questionnaire

  • effective
    Array of string

    The effective period of the questionnaire

  • identifier
    Array of string

    The identifier of the questionnaire

  • item-code
    Array of string

    A code that corresponds to an item in the questionnaire

  • name
    Array of string

    The name of the questionnaire

  • publisher
    Array of string

    The publisher of the questionnaire

  • questionnaire-code
    Array of string

    A code that identifies the questionnaire

  • status
    Array of string

    The status of the questionnaire

  • title
    Array of string

    The title of the questionnaire

Response fields and example

Example payload generated from schema
1
{
2
"resourceType": "Bundle",
3
"type": "searchset",
4
"total": 1,
5
"entry": [
6
{
7
"resource": {
8
"resourceType": "Questionnaire",
9
"id": "patient-intake-questionnaire",
10
"identifier": [
11
{
12
"use": "official",
13
"system": "http://example.org/questionnaire-identifier",
14
"value": "phq-9"
15
}
16
],
17
"status": "draft",
18
"date": "2025-03-27T00:00:00Z",
19
"publisher": "Good Health Clinics",
20
"subjectType": [
21
"Patient"
22
],
23
"item": [
24
{
25
"linkId": "LittleInterest",
26
"code": [
27
{
28
"system": "http://loinc.org",
29
"code": "44250-9"
30
}
31
],
32
"text": "Little interest or pleasure in doing things",
33
"type": "choice",
34
"required": true,
35
"answerValueSet": "http://loinc.org/vs/LL358-3"
36
},
37
{
38
"linkId": "FeelingDown",
39
"code": [
40
{
41
"system": "http://loinc.org",
42
"code": "44255-8"
43
}
44
],
45
"text": "Feeling down, depressed, or hopeless",
46
"type": "choice",
47
"required": true,
48
"answerValueSet": "http://loinc.org/vs/LL358-3"
49
},
50
{
51
"linkId": "TroubleSleeping",
52
"code": [
53
{
54
"system": "http://loinc.org",
55
"code": "44259-0"
56
}
57
],
58
"text": "Trouble falling or staying asleep",
59
"type": "choice",
60
"required": true,
61
"answerValueSet": "http://loinc.org/vs/LL358-3"
62
},
63
{
64
"linkId": "FeelingTired",
65
"code": [
66
{
67
"system": "http://loinc.org",
68
"code": "44254-1"
69
}
70
],
71
"text": "Feeling tired or having little energy",
72
"type": "choice",
73
"required": true,
74
"answerValueSet": "http://loinc.org/vs/LL358-3"
75
},
76
{
77
"linkId": "BadAppetite",
78
"code": [
79
{
80
"system": "http://loinc.org",
81
"code": "44251-7"
82
}
83
],
84
"text": "Poor appetite or overeating",
85
"type": "choice",
86
"required": true,
87
"answerValueSet": "http://loinc.org/vs/LL358-3"
88
},
89
{
90
"linkId": "FeelingBadAboutSelf",
91
"code": [
92
{
93
"system": "http://loinc.org",
94
"code": "44258-2"
95
}
96
],
97
"text": "Feeling bad about yourself - or that you are a failure or have let yourself or your family down",
98
"type": "choice",
99
"required": true,
100
"answerValueSet": "http://loinc.org/vs/LL358-3"
101
},
102
{
103
"linkId": "TroubleConcentrating",
104
"code": [
105
{
106
"system": "http://loinc.org",
107
"code": "44252-5"
108
}
109
],
110
"text": "Trouble concentrating on things, such as reading the newspaper or watching television",
111
"type": "choice",
112
"required": true,
113
"answerValueSet": "http://loinc.org/vs/LL358-3"
114
},
115
{
116
"linkId": "MovingSpeaking",
117
"code": [
118
{
119
"system": "http://loinc.org",
120
"code": "44253-3"
121
}
122
],
123
"text": "Moving or speaking so slowly that other people could have noticed. Or the opposite - being so fidgety or restless that you have been moving around a lot more than usual",
124
"type": "choice",
125
"required": true,
126
"answerValueSet": "http://loinc.org/vs/LL358-3"
127
},
128
{
129
"linkId": "TotalScore",
130
"code": [
131
{
132
"system": "http://loinc.org",
133
"code": "44261-6"
134
}
135
],
136
"text": "Total score",
137
"type": "integer",
138
"required": true
139
},
140
{
141
"linkId": "Difficulty",
142
"code": [
143
{
144
"system": "http://loinc.org",
145
"code": "44256-6"
146
}
147
],
148
"text": "If you checked off any problems, how difficult have these problems made it for you to do your work, take care of things at home, or get along with other people",
149
"type": "choice",
150
"required": true,
151
"answerValueSet": "http://loinc.org/vs/LL358-3"
152
}
153
]
154
},
155
"search": {
156
"mode": "match"
157
}
158
}
159
]
160
}

    Response to a Questionnaire search operation

  • resourceType
    required, string

    Identifies the type of the resource

    Value: Bundle
  • type
    required, string

    Identifies this bundle as a response to a search

    Value: searchset
  • total
    required, number

    The total number of matches

  • entry
    Array of Questionnaire or Other

    A resource matching the search criteria or related to a matching resource

    • resource
      required, object

      Search results for a search on the Questionnaire resource.

      • resourceType
        required, string

        Identifies the type of the resource

        Value: Questionnaire
      • status
        required, string

        The status of this questionnaire. Enables tracking the life-cycle of the content.

        Possible Values: draft, active, retired, unknown
      • id
        string

        The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.

      • identifier
        Array of object

        A formal identifier that is used to identify this questionnaire when it is represented in other formats, or referenced in a specification, model, design or an instance.

        • extension
          Array of Boolean, String, CodeableConcept, Coding

          May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

          • url
            required, string

            Source of the definition for the extension code - a logical name or a URL.

          • valueBoolean
            boolean

            A single value for the extension.

        • use
          string

          The purpose of this identifier.

          Possible Values: usual, official, temp, secondary, old (If known)
        • system
          string

          Establishes the namespace for the value - that is, a URL that describes a set values that are unique.

        • value
          string

          The portion of the identifier typically relevant to the user and which is unique within the context of the system.

      • version
        string

        The identifier that is used to identify this version of the questionnaire when it is referenced in a specification, model, design or instance. This is an arbitrary value managed by the questionnaire author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available. There is also no expectation that versions can be placed in a lexicographical sequence.

      • name
        string

        A natural language name identifying the questionnaire. This name should be usable as an identifier for the module by machine processing applications such as code generation.

      • title
        string

        A short, descriptive, user-friendly title for the questionnaire.

      • derivedFrom
        Array of string

        The URL of a Questionnaire that this Questionnaire is based on.

      • experimental
        boolean

        A Boolean value to indicate that this questionnaire is authored for testing purposes (or education/evaluation/marketing) and is not intended to be used for genuine usage.

      • subjectType
        Array of string

        The types of subjects that can be the subject of responses created for the questionnaire.

      • date
        string

        The date (and optionally time) when the questionnaire was published. The date must change when the business version changes and it must change if the status code changes. In addition, it should change when the substantive content of the questionnaire changes.

      • publisher
        string

        The name of the organization or individual that published the questionnaire.

      • description
        string

        A free text natural language description of the questionnaire from a consumer's perspective.

      • useContext
        Array of object

        The content was developed with a focus and intent of supporting the contexts that are listed. These contexts may be general categories (gender, age, ...) or may be references to specific programs (insurance plans, studies, ...) and may be used to assist with indexing and searching for appropriate questionnaire instances.

        • code
          required, object

          A code that identifies the type of context being specified by this usage context.

          • system
            string

            The identification of the code system that defines the meaning of the symbol in the code.

          • code
            string

            A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination).

        • valueCodeableConcept
          required, object

          A value that defines the context specified in this context of use. The interpretation of the value is defined by the code.

          Only one of valueCodeableConcept, valueQuantity, valueRange, valueReference may be present.

          • id
            string

            A sequence of Unicode characters

          • extension
            Array of object

            May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

            • id
              string

              A sequence of Unicode characters

            • url
              string

              String of characters used to identify a name or a resource

            • valueBase64Binary
              string

              Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

          • coding
            Array of object

            A reference to a code defined by a terminology system.

            • id
              string

              A sequence of Unicode characters

            • extension
              Array of object

              May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

              • id
                string

                A sequence of Unicode characters

              • url
                string

                String of characters used to identify a name or a resource

              • valueBase64Binary
                string

                Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • system
              string

              String of characters used to identify a name or a resource

            • _system
              object

              Extensions for system

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • version
              string

              A sequence of Unicode characters

            • _version
              object

              Extensions for version

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • code
              string

              A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents

            • _code
              object

              Extensions for code

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • display
              string

              A sequence of Unicode characters

            • _display
              object

              Extensions for display

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • userSelected
              boolean

              Value of "true" or "false"

            • _userSelected
              object

              Extensions for userSelected

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

          • text
            string

            A sequence of Unicode characters

          • _text
            object

            Extensions for text

            • id
              string

              A sequence of Unicode characters

            • extension
              Array of object

              May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

              • id
                string

                A sequence of Unicode characters

              • url
                string

                String of characters used to identify a name or a resource

              • valueBase64Binary
                string

                Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

        • valueQuantity
          required, object

          A value that defines the context specified in this context of use. The interpretation of the value is defined by the code.

          Only one of valueCodeableConcept, valueQuantity, valueRange, valueReference may be present.

          • id
            string

            A sequence of Unicode characters

          • extension
            Array of object

            May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

            • id
              string

              A sequence of Unicode characters

            • url
              string

              String of characters used to identify a name or a resource

            • valueBase64Binary
              string

              Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

          • value
            number

            A rational number with implicit precision

          • _value
            object

            Extensions for value

            • id
              string

              A sequence of Unicode characters

            • extension
              Array of object

              May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

              • id
                string

                A sequence of Unicode characters

              • url
                string

                String of characters used to identify a name or a resource

              • valueBase64Binary
                string

                Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

          • comparator

            How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues; e.g. if the comparator is "<" , then the real value is < stated value.

            Possible Values: <, <=, >=, >
          • _comparator
            object

            Extensions for comparator

            • id
              string

              A sequence of Unicode characters

            • extension
              Array of object

              May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

              • id
                string

                A sequence of Unicode characters

              • url
                string

                String of characters used to identify a name or a resource

              • valueBase64Binary
                string

                Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

          • unit
            string

            A sequence of Unicode characters

          • _unit
            object

            Extensions for unit

            • id
              string

              A sequence of Unicode characters

            • extension
              Array of object

              May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

              • id
                string

                A sequence of Unicode characters

              • url
                string

                String of characters used to identify a name or a resource

              • valueBase64Binary
                string

                Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

          • system
            string

            String of characters used to identify a name or a resource

          • _system
            object

            Extensions for system

            • id
              string

              A sequence of Unicode characters

            • extension
              Array of object

              May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

              • id
                string

                A sequence of Unicode characters

              • url
                string

                String of characters used to identify a name or a resource

              • valueBase64Binary
                string

                Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

          • code
            string

            A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents

          • _code
            object

            Extensions for code

            • id
              string

              A sequence of Unicode characters

            • extension
              Array of object

              May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

              • id
                string

                A sequence of Unicode characters

              • url
                string

                String of characters used to identify a name or a resource

              • valueBase64Binary
                string

                Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

        • valueRange
          required, object

          A value that defines the context specified in this context of use. The interpretation of the value is defined by the code.

          Only one of valueCodeableConcept, valueQuantity, valueRange, valueReference may be present.

          • id
            string

            A sequence of Unicode characters

          • extension
            Array of object

            May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

            • id
              string

              A sequence of Unicode characters

            • url
              string

              String of characters used to identify a name or a resource

            • valueBase64Binary
              string

              Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

          • low
            object

            A measured amount (or an amount that can potentially be measured). Note that measured amounts include amounts that are not precisely quantified, including amounts involving arbitrary units and floating currencies.

            • id
              string

              A sequence of Unicode characters

            • extension
              Array of object

              May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

              • id
                string

                A sequence of Unicode characters

              • url
                string

                String of characters used to identify a name or a resource

              • valueBase64Binary
                string

                Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • value
              number

              A rational number with implicit precision

            • _value
              object

              Extensions for value

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • comparator

              How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues; e.g. if the comparator is "<" , then the real value is < stated value.

              Possible Values: <, <=, >=, >
            • _comparator
              object

              Extensions for comparator

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • unit
              string

              A sequence of Unicode characters

            • _unit
              object

              Extensions for unit

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • system
              string

              String of characters used to identify a name or a resource

            • _system
              object

              Extensions for system

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • code
              string

              A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents

            • _code
              object

              Extensions for code

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

          • high
            object

            A measured amount (or an amount that can potentially be measured). Note that measured amounts include amounts that are not precisely quantified, including amounts involving arbitrary units and floating currencies.

            • id
              string

              A sequence of Unicode characters

            • extension
              Array of object

              May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

              • id
                string

                A sequence of Unicode characters

              • url
                string

                String of characters used to identify a name or a resource

              • valueBase64Binary
                string

                Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • value
              number

              A rational number with implicit precision

            • _value
              object

              Extensions for value

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • comparator

              How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues; e.g. if the comparator is "<" , then the real value is < stated value.

              Possible Values: <, <=, >=, >
            • _comparator
              object

              Extensions for comparator

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • unit
              string

              A sequence of Unicode characters

            • _unit
              object

              Extensions for unit

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • system
              string

              String of characters used to identify a name or a resource

            • _system
              object

              Extensions for system

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • code
              string

              A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents

            • _code
              object

              Extensions for code

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

        • valueReference
          required, object

          A value that defines the context specified in this context of use. The interpretation of the value is defined by the code.

          Only one of valueCodeableConcept, valueQuantity, valueRange, valueReference may be present.

          Must reference one of the following types of resources:

          • PlanDefinition
          • ResearchStudy
          • InsurancePlan
          • HealthcareService
          • Group
          • Location
          • Organization
          • id
            string

            A sequence of Unicode characters

          • extension
            Array of object

            May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

            • id
              string

              A sequence of Unicode characters

            • url
              string

              String of characters used to identify a name or a resource

            • valueBase64Binary
              string

              Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

          • reference
            string

            A sequence of Unicode characters

          • _reference
            object

            Extensions for reference

            • id
              string

              A sequence of Unicode characters

            • extension
              Array of object

              May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

              • id
                string

                A sequence of Unicode characters

              • url
                string

                String of characters used to identify a name or a resource

              • valueBase64Binary
                string

                Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

          • type
            string

            String of characters used to identify a name or a resource

          • _type
            object

            Extensions for type

            • id
              string

              A sequence of Unicode characters

            • extension
              Array of object

              May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

              • id
                string

                A sequence of Unicode characters

              • url
                string

                String of characters used to identify a name or a resource

              • valueBase64Binary
                string

                Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

          • identifier
            object

            An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.

            • id
              string

              A sequence of Unicode characters

            • extension
              Array of object

              May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

              • id
                string

                A sequence of Unicode characters

              • url
                string

                String of characters used to identify a name or a resource

              • valueBase64Binary
                string

                Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • use

              The purpose of this identifier.

              Possible Values: usual, official, temp, secondary, old
            • _use
              object

              Extensions for use

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • type
              object

              A coded type for the identifier that can be used to determine which identifier to use for a specific purpose.

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

              • coding
                Array of object

                A reference to a code defined by a terminology system.

                • id
                  string

                  A sequence of Unicode characters

                • extension
                  Array of object

                  May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                  • id
                    string

                    A sequence of Unicode characters

                  • url
                    string

                    String of characters used to identify a name or a resource

                  • valueBase64Binary
                    string

                    Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

                • system
                  string

                  String of characters used to identify a name or a resource

                • _system
                  object

                  Extensions for system

                  • id
                    string

                    A sequence of Unicode characters

                  • extension
                    Array of object

                    May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                    • id
                      string

                      A sequence of Unicode characters

                    • url
                      string

                      String of characters used to identify a name or a resource

                    • valueBase64Binary
                      string

                      Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

                • version
                  string

                  A sequence of Unicode characters

                • _version
                  object

                  Extensions for version

                  • id
                    string

                    A sequence of Unicode characters

                  • extension
                    Array of object

                    May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                    • id
                      string

                      A sequence of Unicode characters

                    • url
                      string

                      String of characters used to identify a name or a resource

                    • valueBase64Binary
                      string

                      Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

                • code
                  string

                  A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents

                • _code
                  object

                  Extensions for code

                  • id
                    string

                    A sequence of Unicode characters

                  • extension
                    Array of object

                    May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                    • id
                      string

                      A sequence of Unicode characters

                    • url
                      string

                      String of characters used to identify a name or a resource

                    • valueBase64Binary
                      string

                      Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

                • display
                  string

                  A sequence of Unicode characters

                • _display
                  object

                  Extensions for display

                  • id
                    string

                    A sequence of Unicode characters

                  • extension
                    Array of object

                    May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                    • id
                      string

                      A sequence of Unicode characters

                    • url
                      string

                      String of characters used to identify a name or a resource

                    • valueBase64Binary
                      string

                      Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

                • userSelected
                  boolean

                  Value of "true" or "false"

                • _userSelected
                  object

                  Extensions for userSelected

                  • id
                    string

                    A sequence of Unicode characters

                  • extension
                    Array of object

                    May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                    • id
                      string

                      A sequence of Unicode characters

                    • url
                      string

                      String of characters used to identify a name or a resource

                    • valueBase64Binary
                      string

                      Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

              • text
                string

                A sequence of Unicode characters

              • _text
                object

                Extensions for text

                • id
                  string

                  A sequence of Unicode characters

                • extension
                  Array of object

                  May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                  • id
                    string

                    A sequence of Unicode characters

                  • url
                    string

                    String of characters used to identify a name or a resource

                  • valueBase64Binary
                    string

                    Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • system
              string

              String of characters used to identify a name or a resource

            • _system
              object

              Extensions for system

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • value
              string

              A sequence of Unicode characters

            • _value
              object

              Extensions for value

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

            • period
              object

              Time period during which identifier is/was valid for use.

              • id
                string

                A sequence of Unicode characters

              • extension
                Array of object

                May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                • id
                  string

                  A sequence of Unicode characters

                • url
                  string

                  String of characters used to identify a name or a resource

                • valueBase64Binary
                  string

                  Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

              • start
                string

                A date, date-time or partial date (e.g. just year or year + month). If hours and minutes are specified, a time zone SHALL be populated. The format is a union of the schema types gYear, gYearMonth, date and dateTime. Seconds must be provided due to schema type constraints but may be zero-filled and may be ignored. Dates SHALL be valid dates.

              • _start
                object

                Extensions for start

                • id
                  string

                  A sequence of Unicode characters

                • extension
                  Array of object

                  May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                  • id
                    string

                    A sequence of Unicode characters

                  • url
                    string

                    String of characters used to identify a name or a resource

                  • valueBase64Binary
                    string

                    Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

              • end
                string

                A date, date-time or partial date (e.g. just year or year + month). If hours and minutes are specified, a time zone SHALL be populated. The format is a union of the schema types gYear, gYearMonth, date and dateTime. Seconds must be provided due to schema type constraints but may be zero-filled and may be ignored. Dates SHALL be valid dates.

              • _end
                object

                Extensions for end

                • id
                  string

                  A sequence of Unicode characters

                • extension
                  Array of object

                  May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

                  • id
                    string

                    A sequence of Unicode characters

                  • url
                    string

                    String of characters used to identify a name or a resource

                  • valueBase64Binary
                    string

                    Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

          • display
            string

            A sequence of Unicode characters

          • _display
            object

            Extensions for display

            • id
              string

              A sequence of Unicode characters

            • extension
              Array of object

              May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

              • id
                string

                A sequence of Unicode characters

              • url
                string

                String of characters used to identify a name or a resource

              • valueBase64Binary
                string

                Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).

      • jurisdiction
        Array of object

        A legal or geographic region in which the questionnaire is intended to be used.

        • coding
          Array of object

          A reference to a code defined by a terminology system.

          • system
            string

            The identification of the code system that defines the meaning of the symbol in the code.

          • code
            string

            A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination).

        • text
          string

          A human language representation of the concept as seen/selected/uttered by the user who entered the data and/or which represents the intended meaning of the user.

      • purpose
        string

        Explanation of why this questionnaire is needed and why it has been designed as it has.

      • copyright
        string

        A copyright statement relating to the questionnaire and/or its contents. Copyright statements are generally legal restrictions on the use and publishing of the questionnaire.

      • approvalDate
        string

        The date on which the resource content was approved by the publisher. Approval happens once when the content is officially approved for usage.

      • lastReviewDate
        string

        The date on which the resource content was last reviewed. Review happens periodically after approval but does not change the original approval date.

      • effectivePeriod
        object

        The period during which the questionnaire content was or is planned to be in active use.

        • start
          string

          The start of the period. The boundary is inclusive.

        • end
          string

          The end of the period. If the end of the period is missing, it means no end was known or planned at the time the instance was created. The start may be in the past, and the end date in the future, which means that period is expected/planned to end at that time.

      • code
        Array of object

        An identifier for this question or group of questions in a particular terminology such as LOINC.

        • system
          string

          The identification of the code system that defines the meaning of the symbol in the code.

        • code
          string

          A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination).

      • item
        Array of object

        A particular question, question grouping or display text that is part of the questionnaire.

        • An identifier that is unique within the Questionnaire allowing linkage to the equivalent item in a QuestionnaireResponse resource.

        • type
          required, string

          The type of questionnaire item this is - whether text for display, a grouping of other items or a particular type of data to be captured (string, integer, coded choice, etc.).

          Possible Values: group, display, boolean, decimal, integer, date, dateTime +
        • definition
          string

          This element is a URI that refers to an ElementDefinition that provides information about this item, including information that might otherwise be included in the instance of the Questionnaire resource. A detailed description of the construction of the URI is shown in Comments, below. If this element is present then the following element values MAY be derived from the Element Definition if the corresponding elements of this Questionnaire resource instance have no value:

          • code (ElementDefinition.code)
          • type (ElementDefinition.type)
          • required (ElementDefinition.min)
          • repeats (ElementDefinition.max)
          • maxLength (ElementDefinition.maxLength)
          • answerValueSet (ElementDefinition.binding)
          • options (ElementDefinition.binding).
        • code
          Array of object

          A terminology code that corresponds to this group or question (e.g. a code from LOINC, which defines many questions and answers).

          • system
            string

            The identification of the code system that defines the meaning of the symbol in the code.

          • code
            string

            A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination).

        • text
          string

          The name of a section, the text of a question or text content for a display item.

        • required
          boolean

          An indication, if true, that the item must be present in a "completed" QuestionnaireResponse. If false, the item may be skipped when answering the questionnaire.

        • answerValueSet
          string

          A reference to a value set containing a list of codes representing permitted answers for a "choice" or "open-choice" question.

    • search
      required, object

      Information about the search process that lead to the creation of this entry.

      • mode
        required, string

        Identifies the Questionnaire as matching the search parameters

        Value: match