This file is indexed.

/usr/share/pegasus/schema/pdax-2.0.xsd is in pegasus-wms 4.4.0+dfsg-7.

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
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSPY v2004 rel. 3 U (http://www.xmlspy.com) by Rebecca Y Jordan (UNIV OF SOUTHERN CALIF) -->
<xs:schema targetNamespace="http://pegasus.isi.edu/schema/PDAX" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://pegasus.isi.edu/schema//PDAX" elementFormDefault="qualified" attributeFormDefault="unqualified" version="2.0">
	<xs:element name="pdag">
		<xs:annotation>
			<xs:documentation>partition DAG in XML</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element name="partition" maxOccurs="unbounded">
					<xs:annotation>
						<xs:documentation>partition specification in terms of job making up the partition</xs:documentation>
					</xs:annotation>
					<xs:complexType>
						<xs:sequence>
							<xs:element name="job" minOccurs="0" maxOccurs="unbounded">
								<xs:annotation>
									<xs:documentation>logical name of the job and logical id, as in the dax</xs:documentation>
								</xs:annotation>
								<xs:complexType>
									<xs:attribute name="name" type="xs:string" use="required"/>
									<xs:attribute name="id" type="xs:ID" use="required"/>
								</xs:complexType>
							</xs:element>
							<xs:element name="child" minOccurs="0" maxOccurs="unbounded">
								<xs:annotation>
									<xs:documentation>child node referring to a job in the partition</xs:documentation>
								</xs:annotation>
								<xs:complexType>
									<xs:sequence>
										<xs:element name="parent" maxOccurs="unbounded">
											<xs:annotation>
												<xs:documentation>parent node referring to a job in the partition</xs:documentation>
											</xs:annotation>
											<xs:complexType>
												<xs:attribute name="ref" type="xs:IDREF" use="required"/>
											</xs:complexType>
										</xs:element>
									</xs:sequence>
									<xs:attribute name="ref" type="xs:IDREF" use="required"/>
								</xs:complexType>
							</xs:element>
						</xs:sequence>
						<xs:attribute name="name" type="xs:string" use="required"/>
						<xs:attribute name="index" type="xs:nonNegativeInteger" use="required"/>
						<xs:attribute name="id" type="xs:ID" use="required"/>
					</xs:complexType>
				</xs:element>
				<xs:element name="child" minOccurs="0" maxOccurs="unbounded">
					<xs:annotation>
						<xs:documentation>child node referring to a partition</xs:documentation>
					</xs:annotation>
					<xs:complexType>
						<xs:sequence>
							<xs:element name="parent" maxOccurs="unbounded">
								<xs:annotation>
									<xs:documentation>parent node referring to a partition</xs:documentation>
								</xs:annotation>
								<xs:complexType>
									<xs:attribute name="ref" type="xs:IDREF" use="required"/>
								</xs:complexType>
							</xs:element>
						</xs:sequence>
						<xs:attribute name="ref" type="xs:IDREF" use="required"/>
					</xs:complexType>
				</xs:element>
			</xs:sequence>
			<xs:attribute name="name" type="xs:string" use="required"/>
			<xs:attribute name="index" type="xs:nonNegativeInteger" use="required"/>
			<xs:attribute name="count" type="xs:nonNegativeInteger" use="required"/>
			<xs:attribute name="version" type="xs:string" use="optional"/>
		</xs:complexType>
		<xs:unique name="UniqueJobID">
			<xs:selector xpath="partition/job"/>
			<xs:field xpath="@id"/>
		</xs:unique>
	</xs:element>
</xs:schema>