This file is indexed.

/usr/share/arc/schema/isis.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
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns="http://www.nordugrid.org/schemas/isis/2009/08"
  xmlns:icfg="http://www.nordugrid.org/schemas/isis/2009/08"
  targetNamespace="http://www.nordugrid.org/schemas/isis/2009/08"
  elementFormDefault="qualified" attributeFormDefault="unqualified"
>

  <xsd:element name="KeyPath" type="xsd:string">
      <xsd:annotation>
          <xsd:documentation xml:lang="en">
              Location of private key. 
          </xsd:documentation>
      </xsd:annotation>
  </xsd:element>

  <xsd:element name="CertificatePath" type="xsd:string">
      <xsd:annotation>
          <xsd:documentation xml:lang="en">
              Location of public certificate.
          </xsd:documentation>
      </xsd:annotation>
  </xsd:element>

  <xsd:element name="ProxyPath" type="xsd:string">
      <xsd:annotation>
          <xsd:documentation xml:lang="en">
              Location of proxy credentials - includes certificates,
              key and chain of involved certificates. Overwrites
              elements KeyPath and CertificatePath.
          </xsd:documentation>
      </xsd:annotation>
  </xsd:element>

  <xsd:element name="CACertificatesDir" type="xsd:string">
      <xsd:annotation>
          <xsd:documentation xml:lang="en">
              Directory containing certificates of accepted CAs.
          </xsd:documentation>
      </xsd:annotation>
  </xsd:element>

  <xsd:element name="CACertificatePath" type="xsd:string">
      <xsd:annotation>
          <xsd:documentation xml:lang="en">
              Location of certificate of CA.
          </xsd:documentation>
      </xsd:annotation>
  </xsd:element>

  <xsd:element name="Endpoint" type="xsd:anyURI">
      <xsd:annotation>
          <xsd:documentation xml:lang="en">
              The URL where the service can be accessed from outside.
          </xsd:documentation>
      </xsd:annotation>
  </xsd:element>

  <xsd:element name="Retry" type="xsd:nonNegativeInteger" default="5">
      <xsd:annotation>
          <xsd:documentation xml:lang="en">
              Retry specifies how many times communication to ISIS have to fail/timeout to start treating it as unavailable.
          </xsd:documentation>
      </xsd:annotation>
  </xsd:element>

  <xsd:element name="Sparsity" type="xsd:nonNegativeInteger" default="2">
      <xsd:annotation>
          <xsd:documentation xml:lang="en">
              It determines the number of neighbors as a function of the actual number of member nodes of the network.
          </xsd:documentation>
      </xsd:annotation>
  </xsd:element>

  <xsd:element name="ETValid" type="xsd:nonNegativeInteger" default="43200">
      <xsd:annotation>
          <xsd:documentation xml:lang="en">
              Period for checking the entries in the soft state database and strip the expired entries (but still keep them).
          </xsd:documentation>
      </xsd:annotation>
  </xsd:element>

  <xsd:element name="ETRemove" type="xsd:nonNegativeInteger" default="86400">
      <xsd:annotation>
          <xsd:documentation xml:lang="en">
              Period for checking the entries in the soft state database and remove the expired entries.
          </xsd:documentation>
      </xsd:annotation>
  </xsd:element>

  <xsd:element name="DBPath" type="xsd:string">
      <xsd:annotation>
          <xsd:documentation xml:lang="en">
              Path of the directory where the database is locally stored.
          </xsd:documentation>
      </xsd:annotation>
  </xsd:element>

  <xsd:element name="InfoProvider" type="xsd:anyURI">
      <xsd:annotation>
          <xsd:documentation xml:lang="en">
              The URL of another ISIS to form a cloud.
          </xsd:documentation>
      </xsd:annotation>
  </xsd:element>

</xsd:schema>