This file is indexed.

/usr/share/php/Symfony/Bundle/WebProfilerBundle/Resources/config/schema/webprofiler-1.0.xsd is in php-symfony-web-profiler-bundle 2.7.10-0ubuntu2.

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
<?xml version="1.0" encoding="UTF-8" ?>

<xsd:schema xmlns="http://symfony.com/schema/dic/webprofiler"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://symfony.com/schema/dic/webprofiler"
    elementFormDefault="qualified">

    <xsd:element name="config" type="config" />

    <xsd:complexType name="config">
        <xsd:attribute name="toolbar" type="xsd:boolean" />
        <xsd:attribute name="intercept-redirects" type="xsd:boolean" />
        <xsd:attribute name="position" type="positions" />
    </xsd:complexType>

    <xsd:simpleType name="positions">
        <xsd:restriction base="xsd:string">
            <xsd:enumeration value="top"/>
            <xsd:enumeration value="bottom"/>
        </xsd:restriction>
    </xsd:simpleType>
</xsd:schema>