Commit 8dce52c5 authored by Steije van Schelt's avatar Steije van Schelt Committed by Mark Canterbury
Browse files

Align minimum VLAN ID with ASN.1 definition

parent 77b1b766
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -193,7 +193,7 @@
    },
    },
    "VLANID": {
    "VLANID": {
      "type": "integer",
      "type": "integer",
      "exclusiveMinimum": 0,
      "minimum": 0,
      "maximum": 4095
      "maximum": 4095
    },
    },
    "IPAddress": {
    "IPAddress": {
+1 −1
Original line number Original line Diff line number Diff line
@@ -274,7 +274,7 @@
    </xs:simpleType>
    </xs:simpleType>
    <xs:simpleType name="VLANID">
    <xs:simpleType name="VLANID">
        <xs:restriction base="xs:integer">
        <xs:restriction base="xs:integer">
            <xs:minExclusive value="0"/>
            <xs:minInclusive value="0"/>
            <xs:maxInclusive value="4095"/>
            <xs:maxInclusive value="4095"/>
        </xs:restriction>
        </xs:restriction>
    </xs:simpleType>
    </xs:simpleType>