This file is indexed.

/usr/share/xml/shibboleth/shibboleth-2.0-native-sp-protocols.xsd is in shibboleth-sp2-common 2.5.3+dfsg-2+deb8u1.

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
<?xml version="1.0" encoding="US-ASCII"?>
<schema targetNamespace="urn:mace:shibboleth:2.0:native:sp:protocols"
        xmlns:prot="urn:mace:shibboleth:2.0:native:sp:protocols"
        xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
        xmlns="http://www.w3.org/2001/XMLSchema"
        attributeFormDefault="unqualified"
        elementFormDefault="qualified"
        blockDefault="substitution"
        version="2.4">

  <annotation>
    <documentation>
      Schema for specifying protocols, services, and bindings, and defaults for the locations of handlers.
      First appearing in Shibboleth 2.4 release.
    </documentation>
  </annotation>
  
  <import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="xmldsig-core-schema.xsd" />

  <simpleType name="string">
    <restriction base="string">
      <minLength value="1"/>
    </restriction>
  </simpleType>

  <element name="Protocols">
    <complexType>
      <sequence>
        <element name="Protocol" maxOccurs="unbounded">
          <complexType>
            <sequence>
              <element name="Service" maxOccurs="unbounded">
                <complexType>
                  <sequence>
                    <element name="Initiator" minOccurs="0">
                      <complexType>
                        <attribute name="id" type="prot:string" use="required" />
                      </complexType>
                    </element>
                    <element name="Binding" minOccurs="0" maxOccurs="unbounded">
                      <complexType>
                        <attribute name="id" type="prot:string" use="required" />
                        <attribute name="path" type="prot:string" use="required" />
                      </complexType>
                    </element>
                  </sequence>
                  <attribute name="id" type="prot:string" use="required" />
                </complexType>
              </element>
            </sequence>
            <attribute name="id" type="prot:string" use="required" />
          </complexType>
        </element>
        <element ref="ds:Signature" minOccurs="0"/>
      </sequence>
    </complexType>
  </element>

</schema>