<dataRef>
<dataRef> identifies the datatype of an attribute value, either by referencing an item in an externally defined datatype library, or by pointing to a TEI-defined data specification [22.5.3.1 Datatypes] | |||||||||||||||||||||||||
Modul | tagdocs — Documentation Elements | ||||||||||||||||||||||||
Attribute | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.analytic (@ana)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source))
| ||||||||||||||||||||||||
Mitglied des | |||||||||||||||||||||||||
Enthalten in | |||||||||||||||||||||||||
Kann enthalten | tagdocs: dataFacet | ||||||||||||||||||||||||
Anmerkung | Only one of the attributes key, name, and ref may be used. dataFacet children are only allowed when dataRef refers with name to a datatype from the specification XML Schemas: Part 2: Datatypes. restriction is only permitted when dataRef uses the name attribute. | ||||||||||||||||||||||||
Beispiel | <schemaSpec ident="myTEI" source="http://www.tei-c.org/Vault/P5/current/xml/tei/odd/p5subset.xml"> <!-- ... --> <dataRef key="teidata.enumerated"/> <!-- ... --> </schemaSpec> | ||||||||||||||||||||||||
Beispiel | <schemaSpec ident="myTEI" source="http://www.tei-c.org/Vault/P5/current/xml/tei/odd/p5subset.xml"> <!-- ... --> <dataRef name="float"/> <!-- ... --> </schemaSpec> | ||||||||||||||||||||||||
Beispiel | <dataSpec ident="data.integerExample"> <desc>datatype used for attributes taking an integer value between 0 and 99</desc> <content> <dataRef name="nonNegativeInteger" restriction="[0-9][0-9]?"/> </content> </dataSpec> | ||||||||||||||||||||||||
Schematron | <sch:rule context="tei:dataRef[tei:dataFacet]"> <sch:assert test="@name" role="nonfatal">Data facets can only be specified for references to datatypes specified by XML Schemas: Part 2: Datatypes</sch:assert> </sch:rule> | ||||||||||||||||||||||||
Schematron | <sch:rule context="tei:dataRef[tei:dataFacet]"> <sch:report test="@restriction" role="nonfatal">The attribute restriction cannot be used when dataFacet elements are present.</sch:report> </sch:rule> | ||||||||||||||||||||||||
Schematron | <sch:rule context="tei:dataRef"> <sch:report test="@restriction and not(@name)" role="fatal">The attribute restriction can only be used with a name attribute.</sch:report> </sch:rule> | ||||||||||||||||||||||||
Content model | <content> | ||||||||||||||||||||||||
Schema Deklaration | <rng:element name="dataRef"> element dataRef { att.global.attributes, att.global.rendition.attributes, att.global.linking.attributes, att.global.analytic.attributes, att.global.facs.attributes, att.global.change.attributes, att.global.responsibility.attributes, att.global.source.attributes, ( attribute key { teidata.xmlName }? | attribute name { teidata.xmlName }? | attribute ref { teidata.pointer }? ), attribute restriction { teidata.pattern }?, dataFacet* } |