The element type dx:xmlType is used to insert formulas and equations into the measurement result range.
The tree structure of the type dx:xmlType has the following appearance:
<xs:complexType name="xmlType">
<xs:sequence>
<xs:any namespace="##other" minOccurs="0"/>
</xs:sequence>
<xs:attributeGroup ref="dx:baseAttributeGroup" />
</xs:complexType>
xs:any is a wildcard that allows you to insert any element that belongs to one of several namespaces. This element can be used within selections (xs:choice) and sequences (xs:sequence) just like xs:element. The frequency of occurrence of the approved elements can be controlled by the minOccurs and maxOccurs attributes of these particles.
The list of allowed namespaces is specified using the namespace attribute. This attribute expects an enumeration of namespace URls.
Further information can be found at:
https://www.data2type.de/xml-xslt-xslfo/xml-schema/element-referenz/xs-any
<xs:any id=xs:id
maxOccurs=( xs:nonNegativeInteger |"unbounded" ) :"1"
minOccurs=xs:nonNegativeInteger :"1"
namespace=( ( "##any"|"##other") | list of ( xs:anyURI | ( "##targetNamespace" |"##local" ) ) ): "##any"
processContents=( "skip" |"lax" |"strict" ): "strict"
{any attributes with a non-schema namespace}>
Content: (xs:annotation?)
</xs:any>
| Attribute Attribute type |
Use | Description |
|---|---|---|
| dx:baseAttributeGroup | [O] | An attribute group called "baseAttributeGroup" is referenced here. This attribute group contains a set of attributes that are commonly used in elements of the DX. An attribute group is a reusable collection of attributes. |