We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems these two XSDs suffered from the missing empty type.
empty
diff --git a/jingle-apps-rtp-rtcp-fb.xsd b/jingle-apps-rtp-rtcp-fb.xsd index 6682a10..b46a2c2 100644 --- a/jingle-apps-rtp-rtcp-fb.xsd +++ b/jingle-apps-rtp-rtcp-fb.xsd @@ -43,4 +43,10 @@ </xs:simpleContent> </xs:complexType> + <xs:simpleType name='empty'> + <xs:restriction base='xs:string'> + <xs:enumeration value=''/> + </xs:restriction> + </xs:simpleType> + </xs:schema> diff --git a/jingle-apps-rtp-rtp-hdrext.xsd b/jingle-apps-rtp-rtp-hdrext.xsd index 9b7a761..53c122f 100644 --- a/jingle-apps-rtp-rtp-hdrext.xsd +++ b/jingle-apps-rtp-rtp-hdrext.xsd @@ -45,4 +45,10 @@ </xs:simpleContent> </xs:complexType> + <xs:simpleType name='empty'> + <xs:restriction base='xs:string'> + <xs:enumeration value=''/> + </xs:restriction> + </xs:simpleType> + </xs:schema>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It seems these two XSDs suffered from the missing
empty
type.The text was updated successfully, but these errors were encountered: