Commit 3170dd78 authored by Mark Canterbury's avatar Mark Canterbury
Browse files

Merge branch 'cr/103280/026' into 'meeting/LI65'

TS 103 280 CR026 - Addition of VIN

See merge request !129
parents 5268d4c5 2f08069f
Loading
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -196,6 +196,10 @@
      "minimum": 0,
      "maximum": 4095
    },
    "VIN": {
      "type": "string",
      "pattern": "^[A-HJ-NPR-Z0-9]{17}$"
    },
    "IPAddress": {
      "oneOf": [
        {
+5 −0
Original line number Diff line number Diff line
@@ -278,4 +278,9 @@
            <xs:maxInclusive value="4095"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="VIN">
        <xs:restriction base="xs:string">
            <xs:pattern value="[A-HJ-NPR-Z0-9]{17}"/>
        </xs:restriction>
    </xs:simpleType>
</xs:schema>