1#[doc = "A value that the referenced question is tested using the specified operator in order for the item to be enabled."]
3#[derive(Default, Debug, Clone, PartialEq)]
4pub enum QuestionnaireItemEnableWhenAnswer {
5 Boolean(super::super::types::Boolean),
6 Decimal(super::super::types::Decimal),
7 Integer(super::super::types::Integer),
8 Date(super::super::types::Date),
9 DateTime(super::super::types::DateTime),
10 Time(super::super::types::Time),
11 String(super::super::types::String),
12 Coding(Box<super::super::types::Coding>),
13 Quantity(Box<super::super::types::Quantity>),
14 Reference(Box<super::super::types::Reference>),
15 #[default]
16 Invalid,
17}
18#[doc = "A potential answer that's allowed as the answer to this question."]
19#[derive(Default, Debug, Clone, PartialEq)]
20pub enum QuestionnaireItemAnswerOptionValue {
21 Integer(super::super::types::Integer),
22 Date(super::super::types::Date),
23 Time(super::super::types::Time),
24 String(super::super::types::String),
25 Coding(Box<super::super::types::Coding>),
26 Reference(Box<super::super::types::Reference>),
27 #[default]
28 Invalid,
29}
30#[doc = "The actual value to for an initial answer."]
31#[derive(Default, Debug, Clone, PartialEq)]
32pub enum QuestionnaireItemInitialValue {
33 Boolean(super::super::types::Boolean),
34 Decimal(super::super::types::Decimal),
35 Integer(super::super::types::Integer),
36 Date(super::super::types::Date),
37 DateTime(super::super::types::DateTime),
38 Time(super::super::types::Time),
39 String(super::super::types::String),
40 Uri(super::super::types::Uri),
41 Attachment(Box<super::super::types::Attachment>),
42 Coding(Box<super::super::types::Coding>),
43 Quantity(Box<super::super::types::Quantity>),
44 Reference(Box<super::super::types::Reference>),
45 #[default]
46 Invalid,
47}
48#[doc = "A constraint indicating that this item should only be enabled (displayed/allow answers to be captured) when the specified condition is true."]
49#[derive(Debug, Clone, PartialEq)]
50pub struct QuestionnaireItemEnableWhen {
51 #[doc = "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."]
52 pub r#id: Option<std::string::String>,
53 #[doc = "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."]
54 pub r#extension: Vec<super::super::types::Extension>,
55 #[doc = "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. 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. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself)."]
56 pub r#modifier_extension: Vec<super::super::types::Extension>,
57 #[doc = "The linkId for the question whose answer (or lack of answer) governs whether this item is enabled."]
58 pub r#question: super::super::types::String,
59 #[doc = "Specifies the criteria by which the question is enabled."]
60 pub r#operator: super::super::types::Code,
61 #[doc = "A value that the referenced question is tested using the specified operator in order for the item to be enabled."]
62 pub r#answer: QuestionnaireItemEnableWhenAnswer,
63}
64#[allow(clippy::derivable_impls)]
65impl Default for QuestionnaireItemEnableWhen {
66 fn default() -> Self {
67 Self {
68 r#id: Default::default(),
69 r#extension: Default::default(),
70 r#modifier_extension: Default::default(),
71 r#question: super::super::types::String {
72 id: Some("$invalid".to_string()),
73 ..Default::default()
74 },
75 r#operator: super::super::types::Code {
76 id: Some("$invalid".to_string()),
77 ..Default::default()
78 },
79 r#answer: Default::default(),
80 }
81 }
82}
83#[doc = "One of the permitted answers for a \"choice\" or \"open-choice\" question."]
84#[derive(Debug, Clone, PartialEq)]
85pub struct QuestionnaireItemAnswerOption {
86 #[doc = "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."]
87 pub r#id: Option<std::string::String>,
88 #[doc = "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."]
89 pub r#extension: Vec<super::super::types::Extension>,
90 #[doc = "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. 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. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself)."]
91 pub r#modifier_extension: Vec<super::super::types::Extension>,
92 #[doc = "A potential answer that's allowed as the answer to this question."]
93 pub r#value: QuestionnaireItemAnswerOptionValue,
94 #[doc = "Indicates whether the answer value is selected when the list of possible answers is initially shown."]
95 pub r#initial_selected: Option<super::super::types::Boolean>,
96}
97#[allow(clippy::derivable_impls)]
98impl Default for QuestionnaireItemAnswerOption {
99 fn default() -> Self {
100 Self {
101 r#id: Default::default(),
102 r#extension: Default::default(),
103 r#modifier_extension: Default::default(),
104 r#value: Default::default(),
105 r#initial_selected: Default::default(),
106 }
107 }
108}
109#[doc = "One or more values that should be pre-populated in the answer when initially rendering the questionnaire for user input."]
110#[derive(Debug, Clone, PartialEq)]
111pub struct QuestionnaireItemInitial {
112 #[doc = "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."]
113 pub r#id: Option<std::string::String>,
114 #[doc = "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."]
115 pub r#extension: Vec<super::super::types::Extension>,
116 #[doc = "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. 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. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself)."]
117 pub r#modifier_extension: Vec<super::super::types::Extension>,
118 #[doc = "The actual value to for an initial answer."]
119 pub r#value: QuestionnaireItemInitialValue,
120}
121#[allow(clippy::derivable_impls)]
122impl Default for QuestionnaireItemInitial {
123 fn default() -> Self {
124 Self {
125 r#id: Default::default(),
126 r#extension: Default::default(),
127 r#modifier_extension: Default::default(),
128 r#value: Default::default(),
129 }
130 }
131}
132#[doc = "A particular question, question grouping or display text that is part of the questionnaire."]
133#[derive(Debug, Clone, PartialEq)]
134pub struct QuestionnaireItem {
135 #[doc = "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."]
136 pub r#id: Option<std::string::String>,
137 #[doc = "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."]
138 pub r#extension: Vec<super::super::types::Extension>,
139 #[doc = "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. 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. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself)."]
140 pub r#modifier_extension: Vec<super::super::types::Extension>,
141 #[doc = "An identifier that is unique within the Questionnaire allowing linkage to the equivalent item in a QuestionnaireResponse resource."]
142 pub r#link_id: super::super::types::String,
143 #[doc = "This element is a URI that refers to an [ElementDefinition](https://hl7.org/FHIR/elementdefinition.html)) 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:\n\n* code (ElementDefinition.code) \n* type (ElementDefinition.type) \n* required (ElementDefinition.min) \n* repeats (ElementDefinition.max) \n* maxLength (ElementDefinition.maxLength) \n* answerValueSet (ElementDefinition.binding)\n* options (ElementDefinition.binding)."]
144 pub r#definition: Option<super::super::types::Uri>,
145 #[doc = "A terminology code that corresponds to this group or question (e.g. a code from LOINC, which defines many questions and answers)."]
146 pub r#code: Vec<super::super::types::Coding>,
147 #[doc = "A short label for a particular group, question or set of display text within the questionnaire used for reference by the individual completing the questionnaire."]
148 pub r#prefix: Option<super::super::types::String>,
149 #[doc = "The name of a section, the text of a question or text content for a display item."]
150 pub r#text: Option<super::super::types::String>,
151 #[doc = "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.)."]
152 pub r#type: super::super::types::Code,
153 #[doc = "A constraint indicating that this item should only be enabled (displayed/allow answers to be captured) when the specified condition is true."]
154 pub r#enable_when: Vec<QuestionnaireItemEnableWhen>,
155 #[doc = "Controls how multiple enableWhen values are interpreted - whether all or any must be true."]
156 pub r#enable_behavior: Option<super::super::types::Code>,
157 #[doc = "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."]
158 pub r#required: Option<super::super::types::Boolean>,
159 #[doc = "An indication, if true, that the item may occur multiple times in the response, collecting multiple answers for questions or multiple sets of answers for groups."]
160 pub r#repeats: Option<super::super::types::Boolean>,
161 #[doc = "An indication, when true, that the value cannot be changed by a human respondent to the Questionnaire."]
162 pub r#read_only: Option<super::super::types::Boolean>,
163 #[doc = "The maximum number of characters that are permitted in the answer to be considered a \"valid\" QuestionnaireResponse."]
164 pub r#max_length: Option<super::super::types::Integer>,
165 #[doc = "A reference to a value set containing a list of codes representing permitted answers for a \"choice\" or \"open-choice\" question."]
166 pub r#answer_value_set: Option<super::super::types::Canonical>,
167 #[doc = "One of the permitted answers for a \"choice\" or \"open-choice\" question."]
168 pub r#answer_option: Vec<QuestionnaireItemAnswerOption>,
169 #[doc = "One or more values that should be pre-populated in the answer when initially rendering the questionnaire for user input."]
170 pub r#initial: Vec<QuestionnaireItemInitial>,
171 #[doc = "Text, questions and other groups to be nested beneath a question or group."]
172 pub r#item: Vec<QuestionnaireItem>,
173}
174#[allow(clippy::derivable_impls)]
175impl Default for QuestionnaireItem {
176 fn default() -> Self {
177 Self {
178 r#id: Default::default(),
179 r#extension: Default::default(),
180 r#modifier_extension: Default::default(),
181 r#link_id: super::super::types::String {
182 id: Some("$invalid".to_string()),
183 ..Default::default()
184 },
185 r#definition: Default::default(),
186 r#code: Default::default(),
187 r#prefix: Default::default(),
188 r#text: Default::default(),
189 r#type: super::super::types::Code {
190 id: Some("$invalid".to_string()),
191 ..Default::default()
192 },
193 r#enable_when: Default::default(),
194 r#enable_behavior: Default::default(),
195 r#required: Default::default(),
196 r#repeats: Default::default(),
197 r#read_only: Default::default(),
198 r#max_length: Default::default(),
199 r#answer_value_set: Default::default(),
200 r#answer_option: Default::default(),
201 r#initial: Default::default(),
202 r#item: Default::default(),
203 }
204 }
205}
206#[doc = "A structured set of questions intended to guide the collection of answers from end-users. Questionnaires provide detailed control over order, presentation, phraseology and grouping to allow coherent, consistent data collection.\n\nTo support structured, hierarchical registration of data gathered using digital forms and other questionnaires. Questionnaires provide greater control over presentation and allow capture of data in a domain-independent way (i.e. capturing information that would otherwise require multiple distinct types of resources)."]
207#[derive(Debug, Clone, PartialEq)]
208pub struct Questionnaire {
209 #[doc = "The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes."]
210 pub r#id: Option<super::super::types::Id>,
211 #[doc = "The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource."]
212 pub r#meta: Option<Box<super::super::types::Meta>>,
213 #[doc = "A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc."]
214 pub r#implicit_rules: Option<super::super::types::Uri>,
215 #[doc = "The base language in which the resource is written."]
216 pub r#language: Option<super::super::types::Code>,
217 #[doc = "A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it \"clinically safe\" for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety."]
218 pub r#text: Option<Box<super::super::types::Narrative>>,
219 #[doc = "These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope."]
220 pub r#contained: Vec<super::super::Resource>,
221 #[doc = "May be used to represent additional information that is not part of the basic definition of the resource. 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."]
222 pub r#extension: Vec<super::super::types::Extension>,
223 #[doc = "May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. 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 is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself)."]
224 pub r#modifier_extension: Vec<super::super::types::Extension>,
225 #[doc = "An absolute URI that is used to identify this questionnaire when it is referenced in a specification, model, design or an instance; also called its canonical identifier. This SHOULD be globally unique and SHOULD be a literal address at which at which an authoritative instance of this questionnaire is (or will be) published. This URL can be the target of a canonical reference. It SHALL remain the same when the questionnaire is stored on different servers."]
226 pub r#url: Option<super::super::types::Uri>,
227 #[doc = "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."]
228 pub r#identifier: Vec<super::super::types::Identifier>,
229 #[doc = "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."]
230 pub r#version: Option<super::super::types::String>,
231 #[doc = "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."]
232 pub r#name: Option<super::super::types::String>,
233 #[doc = "A short, descriptive, user-friendly title for the questionnaire."]
234 pub r#title: Option<super::super::types::String>,
235 #[doc = "The URL of a Questionnaire that this Questionnaire is based on."]
236 pub r#derived_from: Vec<super::super::types::Canonical>,
237 #[doc = "The status of this questionnaire. Enables tracking the life-cycle of the content."]
238 pub r#status: super::super::types::Code,
239 #[doc = "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."]
240 pub r#experimental: Option<super::super::types::Boolean>,
241 #[doc = "The types of subjects that can be the subject of responses created for the questionnaire."]
242 pub r#subject_type: Vec<super::super::types::Code>,
243 #[doc = "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."]
244 pub r#date: Option<super::super::types::DateTime>,
245 #[doc = "The name of the organization or individual that published the questionnaire."]
246 pub r#publisher: Option<super::super::types::String>,
247 #[doc = "Contact details to assist a user in finding and communicating with the publisher."]
248 pub r#contact: Vec<super::super::types::ContactDetail>,
249 #[doc = "A free text natural language description of the questionnaire from a consumer's perspective."]
250 pub r#description: Option<super::super::types::Markdown>,
251 #[doc = "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."]
252 pub r#use_context: Vec<super::super::types::UsageContext>,
253 #[doc = "A legal or geographic region in which the questionnaire is intended to be used."]
254 pub r#jurisdiction: Vec<super::super::types::CodeableConcept>,
255 #[doc = "Explanation of why this questionnaire is needed and why it has been designed as it has."]
256 pub r#purpose: Option<super::super::types::Markdown>,
257 #[doc = "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."]
258 pub r#copyright: Option<super::super::types::Markdown>,
259 #[doc = "The date on which the resource content was approved by the publisher. Approval happens once when the content is officially approved for usage."]
260 pub r#approval_date: Option<super::super::types::Date>,
261 #[doc = "The date on which the resource content was last reviewed. Review happens periodically after approval but does not change the original approval date."]
262 pub r#last_review_date: Option<super::super::types::Date>,
263 #[doc = "The period during which the questionnaire content was or is planned to be in active use."]
264 pub r#effective_period: Option<Box<super::super::types::Period>>,
265 #[doc = "An identifier for this question or group of questions in a particular terminology such as LOINC."]
266 pub r#code: Vec<super::super::types::Coding>,
267 #[doc = "A particular question, question grouping or display text that is part of the questionnaire."]
268 pub r#item: Vec<QuestionnaireItem>,
269}
270#[allow(clippy::derivable_impls)]
271impl Default for Questionnaire {
272 fn default() -> Self {
273 Self {
274 r#id: Default::default(),
275 r#meta: Default::default(),
276 r#implicit_rules: Default::default(),
277 r#language: Default::default(),
278 r#text: Default::default(),
279 r#contained: Default::default(),
280 r#extension: Default::default(),
281 r#modifier_extension: Default::default(),
282 r#url: Default::default(),
283 r#identifier: Default::default(),
284 r#version: Default::default(),
285 r#name: Default::default(),
286 r#title: Default::default(),
287 r#derived_from: Default::default(),
288 r#status: super::super::types::Code {
289 id: Some("$invalid".to_string()),
290 ..Default::default()
291 },
292 r#experimental: Default::default(),
293 r#subject_type: Default::default(),
294 r#date: Default::default(),
295 r#publisher: Default::default(),
296 r#contact: Default::default(),
297 r#description: Default::default(),
298 r#use_context: Default::default(),
299 r#jurisdiction: Default::default(),
300 r#purpose: Default::default(),
301 r#copyright: Default::default(),
302 r#approval_date: Default::default(),
303 r#last_review_date: Default::default(),
304 r#effective_period: Default::default(),
305 r#code: Default::default(),
306 r#item: Default::default(),
307 }
308 }
309}