<xs:complexType name="BusinessObjectDocument">
<xs:sequence>
<xs:element ref="ApplicationArea" />
</xs:sequence>
<xs:attribute name="revision" use="required">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="\p{N}\.\p{N}\.\p{N}" />
<xs:pattern value="\p{N}\.\p{N}" />
<xs:pattern value="\p{N}\p{N}\.\p{N}\.\p{N}" />
<xs:pattern value="\p{N}\p{N}\.\p{N}" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="environment" use="optional" default="Production">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Test" />
<xs:enumeration value="Production" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="lang" type="xs:language" use="optional" default="en-US" />
</xs:complexType>
|