@@ -26,7 +26,7 @@ class MigStatus(StrEnum):
26
26
@dataclass (kw_only = True , eq = True )
27
27
class Code :
28
28
"""
29
- a single code element inside a MIG Dataelement
29
+ A single code element inside a MIG data element, indicated by the `<Code>` tag.
30
30
"""
31
31
32
32
# Example:
@@ -40,7 +40,8 @@ class Code:
40
40
class DataElement :
41
41
"""
42
42
A single data element inside a MIG Segment.
43
- This models both the 'Datenelement' and the 'Gruppendatenelement'
43
+ This models both the 'Datenelement' and the 'Gruppendatenelement', indicated by the `<D_xxxx` tag.
44
+ Are able to contain a single or multiple Code elements.
44
45
"""
45
46
46
47
# pylint:disable=line-too-long
@@ -51,8 +52,8 @@ class DataElement:
51
52
id : str # e.g. 'D_0065'
52
53
name : str # e.g. 'Nachrichtentyp-Kennung'
53
54
description : str | None = None # e.g. ''
54
- status_std : MigStatus
55
- status_specification : MigStatus
55
+ status_std : MigStatus # e.g. M
56
+ status_specification : MigStatus # e.g. M
56
57
format_std : str #: e.g. 'an..6'
57
58
format_specification : str #: e.g. 'an..6'
58
59
codes : list [Code ]
@@ -61,7 +62,8 @@ class DataElement:
61
62
@dataclass (eq = True , kw_only = True )
62
63
class DataElementGroup :
63
64
"""
64
- a group of data elements, German 'Datenelementgruppe'.
65
+ A group of data elements, German 'Datenelementgruppe', indicated by the `<C_xxxx>` tag.
66
+ Are able to contain a single or multiple data elements.
65
67
"""
66
68
67
69
# "Die Datenelementgruppe C0829 enthält mehrere Gruppendatenelemente. Diese Datenelementgruppe enthält das
@@ -84,15 +86,15 @@ class DataElementGroup:
84
86
id : str # e.g. 'C_C082'
85
87
name : str # e.g. 'Identifikation des Beteiligten'
86
88
description : str | None = None # e.g. ''
87
- status_std : MigStatus
88
- status_specification : MigStatus
89
+ status_std : MigStatus # e.g. C
90
+ status_specification : MigStatus # e.g. R
89
91
data_elements : list [DataElement ]
90
92
91
93
92
94
@dataclass (frozen = True , eq = True , order = True , unsafe_hash = True , kw_only = True )
93
95
class Segment :
94
96
"""
95
- a segment inside a MIG
97
+ A segment inside a MIG, indicated by the `<S_xxxx>` tag. A segment contains data elements and data element groups.
96
98
"""
97
99
98
100
# Example:
@@ -118,16 +120,16 @@ class Segment:
118
120
number : str #: e.g. '00004'
119
121
max_rep_std : int #: e.g. 1
120
122
max_rep_specification : int #: e.g. 1
121
- status_std : MigStatus
122
- status_specification : MigStatus
123
+ status_std : MigStatus # e.g. M
124
+ status_specification : MigStatus # e.g. M
123
125
example : str | None #: e.g. "NAD+MS+9900259000002::293'"
124
126
data_elements : list [DataElement | DataElementGroup ]
125
127
126
128
127
129
@dataclass (kw_only = True , eq = True )
128
130
class SegmentGroup :
129
131
"""
130
- a "Segtmentgruppe"
132
+ A 'Segmentgruppe' inside a MIG, indicated by the `<G_xxx>` tag. A segment contains segments and segments groups.
131
133
"""
132
134
133
135
# pylint:disable=line-too-long
0 commit comments