hi there,
i’ve to update a tamino-schema - but it doesn’t work (error attached).
i’d like to add a new attribute (language) to an element (comment).
<xs:element name="Comment">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string"> <xs:attribute name="language" use="optional">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="DE"/>
<xs:enumeration value="FR"/>
</xs:restriction>
</xs:simpleType> </xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>