Commit 8ce15019 authored by Thomas Dodds's avatar Thomas Dodds Committed by canterburym
Browse files

adjusted the cell identifier types to include a minimum length if the ID is a...

adjusted the cell identifier types to include a minimum length if the ID is a HEX string vs a BIT STRING. Still needs discussion. 
parent 2d74b996
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -318,7 +318,7 @@

  <xs:simpleType name="GNbID">
    <xs:restriction base="xs:string">
      <xs:pattern value="([A-Fa-f0-9]{32})"/>
      <xs:pattern value="([A-Fa-f0-9]{6,32})"/>
    </xs:restriction>
  </xs:simpleType>

@@ -332,19 +332,19 @@

  <xs:simpleType name="MacroNGENbID">
    <xs:restriction base="xs:string">
      <xs:pattern value="([A-Fa-f0-9]{20})"/>
      <xs:pattern value="([A-Fa-f0-9]{5,20})"/>
    </xs:restriction>
  </xs:simpleType>

  <xs:simpleType name="ShortMacroNGENbID">
    <xs:restriction base="xs:string">
      <xs:pattern value="([A-Fa-f0-9]{18})"/>
      <xs:pattern value="([A-Fa-f0-9]{5,18})"/>
    </xs:restriction>
  </xs:simpleType>

  <xs:simpleType name="LongMacroNGENbID">
    <xs:restriction base="xs:string">
      <xs:pattern value="([A-Fa-f0-9]{21})"/>
      <xs:pattern value="([A-Fa-f0-9]{6,21})"/>
    </xs:restriction>
  </xs:simpleType>

@@ -359,25 +359,25 @@

  <xs:simpleType name="MacroENbID">
    <xs:restriction base="xs:string">
      <xs:pattern value="([A-Fa-f0-9]{20})"/>
      <xs:pattern value="([A-Fa-f0-9]{5,20})"/>
    </xs:restriction>
  </xs:simpleType>

  <xs:simpleType name="HomeENbID">
    <xs:restriction base="xs:string">
      <xs:pattern value="([A-Fa-f0-9]{28})"/>
      <xs:pattern value="([A-Fa-f0-9]{7,28})"/>
    </xs:restriction>
  </xs:simpleType>

  <xs:simpleType name="ShortMacroENbID">
    <xs:restriction base="xs:string">
      <xs:pattern value="([A-Fa-f0-9]{18})"/>
      <xs:pattern value="([A-Fa-f0-9]{5,18})"/>
    </xs:restriction>
  </xs:simpleType>

  <xs:simpleType name="LongMacroENbID">
    <xs:restriction base="xs:string">
      <xs:pattern value="([A-Fa-f0-9]{21})"/>
      <xs:pattern value="([A-Fa-f0-9]{6,21})"/>
    </xs:restriction>
  </xs:simpleType>