Answered by:
XML Schema of Lab Test Results

Question
-
Hi everyone,
We ran into a question about the schema of the Lab Test Results (v2) type. The schema documented at this link does not start from the top-level element <lab-test-results>, it starts one level below.
We are trying to figure out how many <lab-group> elements can be present inside the top-level <lab-test-results> element? Is it unbounded?
Thanks in advance.
Manish
Monday, March 19, 2012 5:13 PM
Answers
-
<element name="lab-test-results"> <complexType> <annotation> <documentation> <summary> A series of lab test results. </summary> </documentation> </annotation> <sequence> <element name="when" type="d:approx-date-time" minOccurs="0"> <annotation> <documentation> <summary> The date and time of the results. </summary> </documentation> </annotation> </element> <element name="lab-group" type="lab:lab-test-results-group-type" maxOccurs="unbounded"> <annotation> <documentation> <summary> A set of lab results. </summary> </documentation> </annotation> </element> <element name="ordered-by" type="t:Organization" minOccurs="0"> <annotation> <documentation> <summary> The person or organization that ordered the lab tests. </summary> </documentation> </annotation> </element> </sequence> </complexType> </element>
- Marked as answer by Manish Yohannan Monday, March 19, 2012 7:26 PM
Monday, March 19, 2012 6:33 PM
All replies
-
<element name="lab-test-results"> <complexType> <annotation> <documentation> <summary> A series of lab test results. </summary> </documentation> </annotation> <sequence> <element name="when" type="d:approx-date-time" minOccurs="0"> <annotation> <documentation> <summary> The date and time of the results. </summary> </documentation> </annotation> </element> <element name="lab-group" type="lab:lab-test-results-group-type" maxOccurs="unbounded"> <annotation> <documentation> <summary> A set of lab results. </summary> </documentation> </annotation> </element> <element name="ordered-by" type="t:Organization" minOccurs="0"> <annotation> <documentation> <summary> The person or organization that ordered the lab tests. </summary> </documentation> </annotation> </element> </sequence> </complexType> </element>
- Marked as answer by Manish Yohannan Monday, March 19, 2012 7:26 PM
Monday, March 19, 2012 6:33 PM -
Looks like you can have as many as you want.Monday, March 19, 2012 6:33 PM
-
Dankeschön. That was easy.
Manish
Monday, March 19, 2012 7:26 PM