/usr/share/obs/docs/api/attrib.xsd is in obs-api 2.7.4-2.
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 33 34 | <?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified">
<xs:annotation>
<xs:documentation>
This schema describes one attribute
</xs:documentation>
</xs:annotation>
<xs:element name="issue">
<xs:complexType>
<xs:attribute name="name" type="xs:string" />
<xs:attribute name="tracker" type="xs:string" />
</xs:complexType>
</xs:element>
<xs:element name="attribute">
<xs:annotation>
<xs:documentation>
A attribute
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="value" />
<xs:element minOccurs="0" maxOccurs="unbounded" ref="issue" />
</xs:sequence>
<xs:attribute name="name" type="xs:string" />
<xs:attribute name="namespace" type="xs:string" />
</xs:complexType>
</xs:element>
</xs:schema>
|