This file is indexed.

/usr/share/chirp/chirp.xsd is in chirp 1:20160110-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
42
43
44
45
46
47
<!-- 

     CHIRP XML Schema
     Copyright 2008 Dan Smith <dsmith@danplanet.com>

  -->

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">

  <xsd:include schemaLocation="chirp_memory.xsd"/>
  <xsd:include schemaLocation="chirp_banks.xsd"/>

  <xsd:element name="radio" type="radioType"/>

  <xsd:complexType name="radioType">
    <xsd:sequence>
      <xsd:element name="comment" type="xsd:string"
		   minOccurs="0" maxOccurs="1"/>
      <xsd:element name="memories" type="memoryList"
		   minOccurs="1" maxOccurs="1"/>
      <xsd:element name="banks" type="bankList"
		   minOccurs="1" maxOccurs="1"/>
    </xsd:sequence>
    <xsd:attribute name="version" type="chirpSchemaVersionType"/>
  </xsd:complexType>

  <xsd:complexType name="memoryList">
    <xsd:sequence>
      <xsd:element name="memory" type="memoryType"
		   minOccurs="0" maxOccurs="unbounded"/>
    </xsd:sequence>
  </xsd:complexType>

  <xsd:complexType name="bankList">
    <xsd:sequence>
      <xsd:element name="bank" type="bankType"
		   minOccurs="0" maxOccurs="unbounded"/>
    </xsd:sequence>
  </xsd:complexType>

  <xsd:simpleType name="chirpSchemaVersionType">
    <xsd:restriction base="xsd:string">
      <xsd:pattern value="[0-9][0-9]*.[0-9][0-9]*.[0-9]{1,4}"/>
    </xsd:restriction>
  </xsd:simpleType>
      
</xsd:schema>