Commit 9c83d917 authored by pintar's avatar pintar
Browse files

xsd element and type correction

parent abe85615
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2,8 +2,8 @@
<schema xmlns="http://www.w3.org/2001/XMLSchema"
  targetNamespace="schema:Pos_060201_string_001"
  xmlns:types="schema:Pos_060201_string_001">
    <simpleType name="e1">
    <simpleType name="t1">
        <restriction base="string"/>
    </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,8 +2,8 @@
<schema xmlns="http://www.w3.org/2001/XMLSchema"
  targetNamespace="schema:Pos_060204_name_001"
  xmlns:types="schema:Pos_060204_name_001">
    <simpleType name="e1">
    <simpleType name="t1">
        <restriction base="Name"/>
    </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,8 +2,8 @@
<schema xmlns="http://www.w3.org/2001/XMLSchema"
  targetNamespace="schema:Pos_060301_integer_001"
  xmlns:types="schema:Pos_060301_integer_001">
    <simpleType name="e1">
    <simpleType name="t1">
        <restriction base="integer"/>
    </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,8 +2,8 @@
<schema xmlns="http://www.w3.org/2001/XMLSchema"
  targetNamespace="schema:Pos_060302_positive_integer_001"
  xmlns:types="schema:Pos_060302_positive_integer_001">
    <simpleType name="e1">
    <simpleType name="t1">
        <restriction base="positiveInteger"/>
    </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,8 +2,8 @@
<schema xmlns="http://www.w3.org/2001/XMLSchema"
  targetNamespace="schema:Pos_060303_non_positive_integer_001"
  xmlns:types="schema:Pos_060303_non_positive_integer_001">
    <simpleType name="e1">
    <simpleType name="t1">
        <restriction base="nonPositiveInteger"/>
    </simpleType>
	<element name="e1el" type="types:e1"/>
    <element name="e1" type="types:t1"/>
</schema>
Loading