Body:
EMPTYDecode* |
Attributes:
Code | text | |||||
System | URI | |||||
SystemName | text | (optional) | ||||
SystemVersion | text | (optional) | Description | text | (optional) | |
CommentOID | text | (optional) | Reference to a CommentDef |
...
The System is a URI that identifies the code system that defines the code. If the code is taken from a code system resource then the URL for the code system should be used to represent the System. SystemName is a readable name for the System. SystemVersion identifies the version of the System.
Description provides a readable name or designation for the concept identified by the code. Its use is optional and is not intended to be used as a display value or to replace the Decode value for a CodeListItem.
CommentOID references a unique ID of a CommentDef element that provides the rationale for the use of the Concept.
The Decode child element allows to add a human-readable name for the concept in one or more languages.
Code Block |
---|
<CodeList OID="CL.NRIND" Name="Reference Range Indicator" DataType="text"> <EnumeratedItem CodedValue="ABNORMAL"> <Concept Code="C78802" System="https://www.cdisc.org/standards/terminology" SystemName="CDISC/NCI CT" SystemVersion="2019-12-20"/> <Concept Code="394844007" System="http://snomed.info/sct" SystemName="SNOMED-CT" SystemVersion="2019.10.03"> <Decode> <TranslatedText xml:lang="en">Outside reference range</TranslatedText> <TranslatedText xml:lang="es">por fuera de los parámetros de referencia</TranslatedText> </Decode> </Concept> </EnumeratedItem> <EnumeratedItem CodedValue="HIGH"> <Concept Code="C78800" System="https://www.cdisc.org/standards/terminology" SystemName="CDISC/NCI CT" SystemVersion="2019-12-20"/> <Concept Code="281302008" System="http://snomed.info/sct" SystemName="SNOMED-CT" SystemVersion="2019.10.03"> <Decode> <TranslatedText xml:lang="en">Above reference range</TranslatedText> <TranslatedText xml:lang="es">por encima del intervalo de referencia</TranslatedText> </Decode> </Concept> </EnumeratedItem> <EnumeratedItem CodedValue="LOW"> <Concept Code="C78801" System="https://www.cdisc.org/standards/terminology" SystemName="CDISC/NCI CT" SystemVersion="2019-12-20"/> <Concept Code="281300000" System="http://snomed.info/sct" SystemName="SNOMED-CT" SystemVersion="2019.10.03"> <Decode> <TranslatedText xml:lang="en">Below reference range</TranslatedText> <TranslatedText xml:lang="es">por debajo de los límites de referencia</TranslatedText> </Decode> </Concept> </EnumeratedItem> <EnumeratedItem CodedValue="NORMAL"> <Concept Code="C78727" System="https://www.cdisc.org/standards/terminology" SystemName="CDISC/NCI CT" SystemVersion="2019-12-20"/> <Concept Code="281301001" System="http://snomed.info/sct" SystemName="SNOMED-CT" SystemVersion="2019.10.03"> <Decode> <TranslatedText xml:lang="en">Within reference range</TranslatedText> <TranslatedText xml:lang="es">dentro de los límites de referencia</TranslatedText> </Decode> </Concept> </EnumeratedItem> <Concept Code="C78736" System="https://www.cdisc.org/standards/terminology" SystemName="CDISC/NCI CT" SystemVersion="2019-12-20"/> <Concept Code="442705008" System="http://snomed.info/sct" SystemName="SNOMED-CT" SystemVersion="2019.10.03"> <Decode> <TranslatedText xml:lang="en">Reference range interpretation value</TranslatedText> <TranslatedText xml:lang="es">valor de interpretación de rango de referencia</TranslatedText> </Decode> </Concept> </CodeList> |
...