This file is indexed.

/usr/share/arc/schema/msgvalidator.xsd is in libarccommon3 4.2.0-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
35
36
37
38
39
40
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.nordugrid.org/schemas/msgvalidator/2009/08"
    xmlns="http://www.nordugrid.org/schemas/msgvalidator/2009/08"
    elementFormDefault="qualified"
    attributeFormDefault="unqualified">

<!--  The MCCMsgValidator MCC should be placed between the MCCSOAP and Plexer. -->

<!-- ValidatedService -->
<xsd:element name="ValidatedService">
    <xsd:complexType>
        <xsd:annotation>
            <xsd:documentation xml:lang="en">
            Node for a Service to be validated. There may be multiple ValidatedService elements.
            </xsd:documentation>
        </xsd:annotation>
        <xsd:sequence>
            <xsd:element name="ServicePath" type="xsd:string" minOccurs="1" maxOccurs="1">
                <xsd:annotation>
                    <xsd:documentation xml:lang="en">
                    Relative path of the service to be validated
                    e.g.: "http://example.org:50000/PythonServiceDemo" --> "/PythonServiceDemo"
                    If omitted, validation of this Service will be skipped
                    </xsd:documentation>
                </xsd:annotation>
            </xsd:element>
            <xsd:element name="SchemaPath" type="xsd:anyURI" minOccurs="1" maxOccurs="1">
                <xsd:annotation>
                    <xsd:documentation xml:lang="en">
                    Path of the schema to validate with. If omitted, validation of this Service will be skipped
                    </xsd:documentation>
                </xsd:annotation>
            </xsd:element>
        </xsd:sequence>
    </xsd:complexType>
</xsd:element>

</xsd:schema>