This file is indexed.

/etc/digidocpp/schema/conf.xsd is in libdigidocpp-common 0.3.0-0ubuntu4.

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
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <xsd:element name="configuration">
    <xsd:complexType>
      <xsd:choice maxOccurs="unbounded" minOccurs="0">
        <xsd:element ref="param"/>
        <xsd:element ref="ocsp"/>
      </xsd:choice>
    </xsd:complexType>
  </xsd:element>
  <xsd:element name="ocsp">
    <xsd:complexType>
      <xsd:all>
        <xsd:element name="url" type="xsd:string"/>
        <xsd:element name="cert" type="xsd:string"/>
      </xsd:all>
      <xsd:attribute name="issuer" type="xsd:string" use="required"/>
    </xsd:complexType>
  </xsd:element>
  <xsd:element name="param">
    <xsd:complexType>
      <xsd:simpleContent>
        <xsd:extension base="xsd:string">
          <xsd:attribute name="name" use="required" type="xsd:string"/>
        </xsd:extension>
      </xsd:simpleContent>
    </xsd:complexType>
  </xsd:element>
</xsd:schema>