This file is indexed.

/usr/share/foomatic/xmlschema/driver.xsd is in foomatic-db 20161201-1.

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
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<?xml version="1.0" encoding="UTF-8" ?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
			elementFormDefault="qualified">

    <xsd:include schemaLocation="types.xsd" />
	
	<xsd:simpleType name="packageScopes">
		<xsd:restriction base="xsd:string">
			<xsd:enumeration value="general" />
			<xsd:enumeration value="gui" />
			<xsd:enumeration value="printer" />
			<xsd:enumeration value="scanner" />
			<xsd:enumeration value="fax" />
		</xsd:restriction>
	</xsd:simpleType>
	
	<xsd:simpleType name="ratings">
		<xsd:restriction base="xsd:int">
			<xsd:minInclusive value="0" />
			<xsd:maxInclusive value="100" />
		</xsd:restriction>
	</xsd:simpleType>
	    			
	<xsd:element name="functionality">
		<xsd:complexType>
			<xsd:all>
				<xsd:element name="maxresx" type="xsd:nonNegativeInteger" minOccurs="0" />
				<xsd:element name="maxresy" type="xsd:nonNegativeInteger" minOccurs="0" />
				<xsd:element name="color" minOccurs="0">
					<xsd:complexType />								
				</xsd:element>
				<xsd:element name="monochrome" minOccurs="0">
					<xsd:complexType />
				</xsd:element>
				<xsd:element name="text" type="ratings" minOccurs="0" />
				<xsd:element name="lineart" type="ratings" minOccurs="0" />
				<xsd:element name="graphics" type="ratings" minOccurs="0" />
				<xsd:element name="photo" type="ratings" minOccurs="0" />
				<xsd:element name="load" type="ratings" minOccurs="0" />
				<xsd:element name="speed" type="ratings" minOccurs="0" />
			</xsd:all>
		</xsd:complexType>
	</xsd:element>
	
    <xsd:element name="driver">
		<xsd:complexType>
			<xsd:all>
				<xsd:element name="name" type="xsd:string" />
				<xsd:element name="group" type="xsd:string" minOccurs="0" />
				<xsd:element name="locales" type="xsd:string" minOccurs="0" />
				<xsd:element name="pcdriver" minOccurs="0">
					<xsd:simpleType>
						<xsd:restriction base="xsd:string">
							<xsd:pattern value="[A-Z]{2}" />
						</xsd:restriction>
					</xsd:simpleType>
				</xsd:element>
				<xsd:element name="url" type="xsd:string" minOccurs="0" />
				<xsd:element name="obsolete" minOccurs="0">
					<xsd:complexType>
						<xsd:attribute name="replace" type="xsd:string" use="required" />
					</xsd:complexType>
				</xsd:element>
				<xsd:element name="supplier" type="xsd:string" minOccurs="0" />
				<xsd:element name="thirdpartysupplied" minOccurs="0">
					<xsd:complexType />
				</xsd:element>
				<xsd:element name="manufacturersupplied" type="xsd:string" minOccurs="0" />
				<xsd:element name="license" type="xsd:string" minOccurs="0" />
				<xsd:element name="licensetext" type="i18nString" minOccurs="0" />
				<xsd:element name="nonfreesoftware" minOccurs="0">
					<xsd:complexType />
				</xsd:element>
				<xsd:element name="patents" minOccurs="0">
					<xsd:complexType />
				</xsd:element>
				<xsd:element name="supportcontacts" minOccurs="0">
					<xsd:complexType>
						<xsd:sequence>
							<xsd:element name="supportcontact" minOccurs="0" maxOccurs="unbounded">
								<xsd:complexType>
									<xsd:simpleContent>
										<xsd:extension base="xsd:string">
											<xsd:attribute name="level" type="xsd:string" use="required" />
											<xsd:attribute name="url" type="xsd:string" use="required" />
										</xsd:extension>
									</xsd:simpleContent>
								</xsd:complexType>
							</xsd:element>
						</xsd:sequence>
					</xsd:complexType>
				</xsd:element>
				<xsd:element name="shortdescription" type="i18nString" minOccurs="0" />
				<xsd:element name="packages" minOccurs="0">
					<xsd:complexType>
						<xsd:sequence>
							<xsd:element name="package" minOccurs="0" maxOccurs="unbounded">
								<xsd:complexType>
									<xsd:simpleContent>
										<xsd:extension base="xsd:string">
											<xsd:attribute name="scope" type="packageScopes" use="required" />
											<xsd:attribute name="fingerprint" type="xsd:string" use="optional" />
										</xsd:extension>
									</xsd:simpleContent>
								</xsd:complexType>
							</xsd:element>
						</xsd:sequence>
					</xsd:complexType>
				</xsd:element>
				
				<xsd:element ref="functionality" minOccurs="0" />
				
				<!-- <execution> -->
				<xsd:element name="execution">
					<xsd:complexType>
						<xsd:sequence>
							<xsd:element name="requires" minOccurs="0" maxOccurs="unbounded">
								<xsd:complexType>
									<xsd:simpleContent>
										<xsd:extension base="xsd:string">
											<xsd:attribute name="version" type="xsd:string" use="optional" />
										</xsd:extension>
									</xsd:simpleContent>
								</xsd:complexType>
							</xsd:element>
							<xsd:element name="ghostscript" minOccurs="0">
								<xsd:complexType />
							</xsd:element>
							<xsd:element name="ijs" minOccurs="0">
								<xsd:complexType />
							</xsd:element>
							<xsd:element name="cups" minOccurs="0">
								<xsd:complexType />
							</xsd:element>
							<xsd:element name="opvp" minOccurs="0">
								<xsd:complexType />
							</xsd:element>
							<xsd:element name="uniprint" minOccurs="0">
								<xsd:complexType />
							</xsd:element>
							<xsd:element name="filter" minOccurs="0">
								<xsd:complexType />
							</xsd:element>
							<xsd:element name="postscript" minOccurs="0">
								<xsd:complexType />
							</xsd:element>
							<xsd:element name="nopjl" minOccurs="0">
								<xsd:complexType />
							</xsd:element>
							<xsd:element name="nopageaccounting" minOccurs="0">
								<xsd:complexType />
							</xsd:element>
							<xsd:element name="prototype" type="xsd:string" minOccurs="0" />
							<xsd:element name="prototype_pdf" type="xsd:string" minOccurs="0" />
							<xsd:element name="margins" type="marginsDefinition" minOccurs="0" />
							<xsd:element name="ppdentry" type="xsd:string" minOccurs="0" />
						</xsd:sequence>
					</xsd:complexType>
				</xsd:element>
				<!-- </execution> -->
				
				<!-- <printers> -->
				<xsd:element name="printers" minOccurs="0">
					<xsd:complexType>
						<xsd:sequence>
							<xsd:element name="printer" minOccurs="0" maxOccurs="unbounded">
								<xsd:complexType>
									<xsd:all>
										<xsd:element name="id" type="printerID" />
										<xsd:element name="comments" type="i18nString" minOccurs="0" />
										<xsd:element ref="functionality" minOccurs="0" />
										<xsd:element name="margins" type="marginsDefinition" minOccurs="0" />
										<xsd:element name="ppdentry" type="xsd:string" minOccurs="0" />
									</xsd:all>
								</xsd:complexType>
							</xsd:element>
						</xsd:sequence>
					</xsd:complexType>
				</xsd:element>
				<!-- </printers> -->
				
				<xsd:element name="comments" type="i18nString" minOccurs="0" />
			</xsd:all>
			<xsd:attribute name="id" type="driverID" use="required" />
		</xsd:complexType>
	</xsd:element>
</xsd:schema>