/usr/share/zypp/schema/yum/other.rng is in libzypp-common 15.3.0-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | <?xml version="1.0" encoding="UTF-8"?>
<grammar ns="http://linux.duke.edu/metadata/other" xmlns="http://relaxng.org/ns/structure/1.0">
<include href="common-inc.rng"/>
<start>
<element name="otherdata">
<attribute name="packages">
<ref name="private.nonnegative"/>
</attribute>
<zeroOrMore>
<element name="package">
<attribute name="pkgid"/>
<attribute name="name"/>
<attribute name="arch">
<ref name="private.archenum"/>
</attribute>
<element name="version">
<ref name="private.evr"/>
</element>
<zeroOrMore>
<element name="changelog">
<attribute name="author"/>
<attribute name="date">
<ref name="private.unixts"/>
</attribute>
<text/>
</element>
</zeroOrMore>
</element>
</zeroOrMore>
</element>
</start>
</grammar>
|