Commit 75e63a89 authored by Olaf Wenck's avatar Olaf Wenck Committed by Mark Canterbury
Browse files

TS 103 280 CR 033 - Addition of H323-URI, IMPU and IMPI to the dictionary parameters

parent 89b49cb2
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -407,6 +407,17 @@
        "etsi280:latitude",
        "etsi280:longitude"
      ]
    },
    "H323URI": {
      "type": "string",
      "pattern": "^h323:[a-zA-Z0-9!#$&-;=?-\\[\\]_~%]+$"
    },
    "IMPU": {
      "type": "string",
      "pattern": "^[a-zA-Z0-9!#$&-;=?-\\[\\]_~%]+$"
    },
    "IMPI": {
      "$ref": "#/$defs/NAI"
    }
  }
}
+13 −0
Original line number Diff line number Diff line
@@ -297,4 +297,17 @@
    <xs:simpleType name="DNN">
        <xs:restriction base="LongString"/>
    </xs:simpleType>
    <xs:simpleType name="H323URI">
        <xs:restriction base="ShortString">
            <xs:pattern value="h323:[a-zA-Z0-9!#$&amp;-;=?-\[\]_~%]+"/>
        </xs:restriction>
    </xs:simpleType>
   <xs:simpleType name="IMPU">
        <xs:restriction base="ShortString">
            <xs:pattern value="[a-zA-Z0-9!#$&amp;-;=?-\[\]_~%]+"/>
        </xs:restriction>
    </xs:simpleType>
   <xs:simpleType name="IMPI">
        <xs:restriction base="NAI"/>
    </xs:simpleType>
</xs:schema>