<om:oruxmapsextensions xmlns:om="
does not exist, and I have not found the XSD. Is there a place to find it?
In lieu of having a real one, I generated one, which works for <om:bpm> but probably doesn't have other elements. In case it would be useful to others in place of the real one, here it is:
Code Select
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://www.oruxmaps.com/oruxmapsextensions/1/0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="oruxmapsextensions">
<xs:complexType>
<xs:sequence>
<xs:element name="ext">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:byte">
<xs:attribute type="xs:string" name="type"/>
<xs:attribute type="xs:byte" name="subtype"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element type="xs:string" name="bpm"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>