You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<xs:attributename='setup'use='required'/> <!-- shouldn't close itself -->
<xs:simpleType>
<xs:restrictionbase='xs:NCName'>
<xs:enumerationvalue='active'/>
<xs:enumerationvalue='passive'/>
<xs:enumerationvalue='actpass'/>
<xs:enumerationvalue='holdconn'/>
<xs:annotation>
<xs:documentation>
the 'holdconn' value is not used and included only for completeness.
</xs:documentation>
</xs:annotation>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
TO-BE
<xs:attributename='setup'use='required'>
<xs:simpleType>
<xs:restrictionbase='xs:NCName'>
<xs:enumerationvalue='active'/>
<xs:enumerationvalue='passive'/>
<xs:enumerationvalue='actpass'/>
<xs:enumerationvalue='holdconn'/>
<xs:annotation>
<xs:documentation>
the 'holdconn' value is not used and included only for completeness.
</xs:documentation>
</xs:annotation>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
The text was updated successfully, but these errors were encountered:
It seems that an
xs:attribute
prematurely closed itself.See
https://github.com/xsf/schemas/blob/master/jingle-apps-dtls.xsd#L21-L35
AS-IS
TO-BE
The text was updated successfully, but these errors were encountered: