Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 21 additions & 2 deletions xep-0167.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,15 @@
&seanegan;
&robmcqueen;
&diana;
<revision>
<version>1.2.4</version>
<date>2026-01-25</date>
<initials>egp</initials>
<remark><ul>
<li>Make &lt;bandwidth/&gt; element 'xs:unsignedInt' (32-bit) instead of 'xs:string' to match RFC3556.</li>
<li>Add an enumeration restriction on the possible values of the bandwidth 'type'.</li>
</ul></remark>
</revision>
<revision>
<version>1.2.3</version>
<date>2025-07-04</date>
Expand Down Expand Up @@ -1808,9 +1817,9 @@ Romeo Juliet

<xs:complexType name='bandwidthElementType'>
<xs:simpleContent>
<xs:extension base='xs:string'>
<xs:extension base='xs:unsignedInt'>
<xs:attribute name='type'
type='xs:string'
type='bwtype'
use='required'/>
</xs:extension>
</xs:simpleContent>
Expand Down Expand Up @@ -1864,6 +1873,16 @@ Romeo Juliet
</xs:simpleContent>
</xs:complexType>

<xs:simpleType name='bwtype'>
<xs:restriction base='xs:string'>
<xs:enumeration value='CT'/>
<xs:enumeration value='AS'/>
<xs:enumeration value='RS'/>
<xs:enumeration value='RR'/>
<xs:enumeration value='TIAS'/>
</xs:restriction>
</xs:simpleType>

<xs:simpleType name='empty'>
<xs:restriction base='xs:string'>
<xs:enumeration value=''/>
Expand Down
Loading