/usr/share/obs/docs/api/activity.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 | <?xml version="1.0" encoding="UTF-8" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="activity">
<xs:annotation>
<xs:documentation>
Package or project with activity value.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:choice minOccurs="1" maxOccurs="1">
<xs:element ref="package" minOccurs="1" maxOccurs="1" />
<xs:element ref="project" minOccurs="1" maxOccurs="1" />
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="package">
<xs:complexType>
<xs:attribute name="name" type="xs:string" use="required" />
<xs:attribute name="project" type="xs:string" use="required" />
<xs:attribute name="activity" type="xs:float" use="required" />
</xs:complexType>
</xs:element>
<xs:element name="project">
<xs:complexType>
<xs:attribute name="name" type="xs:string" use="required" />
<xs:attribute name="activity" type="xs:float" use="required" />
</xs:complexType>
</xs:element>
</xs:schema>
|