This file is indexed.

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

<!--
    These elements define configuration parameters for client
    part of HTTP MCC. Service part uses no configuration.
-->
<xsd:element name="Endpoint" type="xsd:anyURI">
    <xsd:annotation>
        <xsd:documentation xml:lang="en">
        Endpoint (URL) for HTTP request. This configuration parameter may be overwritted by HTTP:ENDPOINT attribute of message.
        </xsd:documentation>
    </xsd:annotation>
</xsd:element>

<xsd:element name="Method">
    <xsd:simpleType>
        <xsd:annotation>
            <xsd:documentation xml:lang="en">
            Method to use for HTTP request. May be overwritten by HTTP:METHOD attribute of message.
            </xsd:documentation>
        </xsd:annotation>
        <xsd:restriction base="xsd:string">
            <xsd:enumeration value="DELETE"/>
            <xsd:enumeration value="GET"/>
            <xsd:enumeration value="HEAD"/>
            <xsd:enumeration value="POST"/>
            <xsd:enumeration value="PUT"/>
            <xsd:enumeration value="OPTIONS"/>
            <xsd:enumeration value="TRACE"/>
            <xsd:enumeration value="CONNECT"/>
        </xsd:restriction>
    </xsd:simpleType>
</xsd:element>

</xsd:schema>