Commit abe85615 authored by pintar's avatar pintar
Browse files

xsd element and type correction

parent 998bf689
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:Pos_060107_mininclusive_001"
  xmlns:types="schema:Pos_060107_mininclusive_001">
    <simpleType name="e1">
    <simpleType name="t1">
        <restriction base="integer">
        <minInclusive value="-5"/>
    </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_060107_mininclusive_002"
  xmlns:types="schema:Pos_060107_mininclusive_002">
    <simpleType name="e1">
    <simpleType name="t1">
        <restriction base="float">
        <minInclusive value="-5"/>
    </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_060107_mininclusive_003"
  xmlns:types="schema:Pos_060107_mininclusive_003">
    <simpleType name="e1">
    <simpleType name="t1">
        <restriction base="float">
        <minInclusive value="-INF"/>
    </restriction>
    </simpleType>
    <element name="e1el" type="types:e1"/>
    <element name="e1" type="types:t1"/>
</schema>
 No newline at end of file
+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_060107_mininclusive_004"
  xmlns:types="schema:Pos_060107_mininclusive_004">
    <simpleType name="e1">
    <simpleType name="t1">
        <restriction base="float">
        <minInclusive value="INF"/>
    </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_060107_mininclusive_005"
  xmlns:types="schema:Pos_060107_mininclusive_005">
    <simpleType name="e1">
    <simpleType name="t1">
        <restriction base="float">
        <minInclusive value="NaN"/>
    </restriction>
    </simpleType>
    <element name="e1el" type="types:e1"/>
    <element name="e1" type="types:t1"/>
</schema>
Loading