This file is indexed.

/usr/share/libusermetrics/themes/color-theme.xsd is in usermetricsservice 1.1.1+15.10.20150915-0ubuntu1.

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
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">

	<xs:element name="themes" type="ThemeList"></xs:element>

	<xs:complexType name="ThemeList">
		<xs:sequence maxOccurs="unbounded" minOccurs="1">
			<xs:element name="theme" type="Theme"></xs:element>
		</xs:sequence>
	</xs:complexType>

	<xs:complexType name="Theme">
		<xs:sequence>
			<xs:element name="foreground" type="ColorSet"></xs:element>
			<xs:element name="background" type="ColorSet"></xs:element>
		</xs:sequence>
	</xs:complexType>

	<xs:complexType name="ColorSet">
		<xs:attribute name="start" type="xs:string" use="required"></xs:attribute>
		<xs:attribute name="main" type="xs:string" use="required"></xs:attribute>
		<xs:attribute name="end" type="xs:string" use="required"></xs:attribute>
	</xs:complexType>
</xs:schema>