File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -39,12 +39,14 @@ which aims to replace `txHL7 <https://txhl7.readthedocs.io/>`_.
3939Result Tree
4040-----------
4141
42- HL7 Messages have a limited number of levels. The top level is a Message.
43- A Message is comprised of a number of Fields (:py:class: `hl7.Field `).
44- Fields can repeat (:py:class: `hl7.Repetition `). The content of a field
45- is either a primitive data type (such as a string) or a composite
46- data type comprised of one or more Components (:py:class: `hl7.Component `). Components
47- are in turn comprised of Sub-Components (primitive data types).
42+ HL7 messages have a limited number of levels. The top level is a
43+ :py:class: `hl7.Message `. A message is comprised of a number of
44+ :py:class: `hl7.Segment ` objects. Each segment contains a series of
45+ :py:class: `hl7.Field ` objects. Fields can repeat (:py:class: `hl7.Repetition `).
46+ The content of a field is either a primitive data type (such as a string)
47+ or a composite data type comprised of one or more
48+ :py:class: `hl7.Component ` objects. Components are in turn comprised of
49+ sub-components (primitive data types).
4850
4951The result of parsing is accessed as a tree using python list conventions:
5052
You can’t perform that action at this time.
0 commit comments