This file is indexed.

/usr/share/arc/examples/echo_python/echo_python.xsd is in nordugrid-arc-python 5.0.5-1ubuntu1.

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
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.nordugrid.org/schemas/echo_python/2009/08"
    xmlns="http://www.nordugrid.org/schemas/echo_python/2009/08"
    elementFormDefault="qualified"
    attributeFormDefault="unqualified">

<xsd:element name="prefix">
    <xsd:annotation>
        <xsd:documentation xml:lang="en">
        Prefix of the response string.
        </xsd:documentation>
    </xsd:annotation>
</xsd:element>

<xsd:element name="suffix">
    <xsd:annotation>
        <xsd:documentation xml:lang="en">
        Suffix of the response string.
        </xsd:documentation>
    </xsd:annotation>
</xsd:element>

<xsd:element name="ClientSSLConfig">
    <xsd:complexType>
        <xsd:attribute name="FromFile" type="xsd:string" use="optional">
            <xsd:annotation>
                <xsd:documentation xml:lang="en">
                Defines the path of the XML file which contains TLS related clint configuration. If this attribute defined than the elements inside will be ignored.
                </xsd:documentation>
            </xsd:annotation>
        </xsd:attribute>
        <xsd:annotation>
            <xsd:documentation xml:lang="en">
            Container of TLS related client configuration 
            </xsd:documentation>
        </xsd:annotation>
        <xsd:sequence>
            <xsd:element name="KeyPath" type="xsd:string" minOccurs="0" maxOccurs="1">
                <xsd:annotation>
                    <xsd:documentation xml:lang="en">
                    Path of certificate private key
                    </xsd:documentation>
                </xsd:annotation>
            </xsd:element>
            <xsd:element name="CertificatePath" type="xsd:string" minOccurs="0" maxOccurs="1">
                <xsd:annotation>
                    <xsd:documentation xml:lang="en">
                    Path of certificate
                    </xsd:documentation>
                </xsd:annotation>
            </xsd:element>
            <xsd:element name="CACertificateDir" type="xsd:string" minOccurs="0" maxOccurs="1">
                <xsd:annotation>
                    <xsd:documentation xml:lang="en">
                    Directory location of CA certificates
                    </xsd:documentation>
                </xsd:annotation>
            </xsd:element>
        </xsd:sequence>
    </xsd:complexType>
</xsd:element>
</xsd:schema>