Commit 94a7ee52 authored by Mark Canterbury's avatar Mark Canterbury
Browse files

Merge branch 'maintenance/LI64-280-vlan-inconsistency' into 'meeting/LI64'

Align minimum VLAN ID with ASN.1 definition

See merge request !123
parents 77b1b766 8dce52c5
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>