Commit 998bf689 authored by pintar's avatar pintar
Browse files

xsd element and type correction

parent 41bd173b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2,10 +2,10 @@
<schema xmlns="http://www.w3.org/2001/XMLSchema"
  targetNamespace="schema:Neg_060101_length_001"
  xmlns:types="schema:Neg_060101_length_001">
    <simpleType name="e1">
    <simpleType name="t1">
        <restriction base="NMTOKENS">
            <length value="3"/>
        </restriction>
    </simpleType>
    <element name="e1el" type="types:e1"/>
    <element name="e1" type="types:t1"/>
</schema>
+2 −2
Original line number Diff line number Diff line
@@ -2,10 +2,10 @@
<schema xmlns="http://www.w3.org/2001/XMLSchema"
  targetNamespace="schema:Pos_060101_length_001"
  xmlns:types="schema:Pos_060101_length_001">
    <simpleType name="e1">
    <simpleType name="t1">
        <restriction base="string">
        <length value="10"/>
    </restriction>
    </simpleType>
    <element name="e1el" type="types:e1"/>
    <element name="e1" type="types:t1"/>
</schema>
+2 −2
Original line number Diff line number Diff line
@@ -2,10 +2,10 @@
<schema xmlns="http://www.w3.org/2001/XMLSchema"
  targetNamespace="schema:Pos_060101_length_002"
  xmlns:types="schema:Pos_060101_length_002">
    <simpleType name="e1">
    <simpleType name="t1">
        <restriction base="NMTOKENS">
            <length value="3"/>
        </restriction>
    </simpleType>
    <element name="e1el" type="types:e1"/>
    <element name="e1" type="types:t1"/>
</schema>