/usr/share/arc/schema/ArcPDP.xsd is in libarccommon3v5 5.3.0~rc1-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 | <?xml version="1.0" encoding="UTF-8"?>
<xsd:schema
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.nordugrid.org/schemas/arcpdp/2009/08"
xmlns:pdp="http://www.nordugrid.org/schemas/arcpdp/2009/08"
targetNamespace="http://www.nordugrid.org/schemas/arcpdp/2009/08"
elementFormDefault="qualified">
<xsd:element name="Filter">
<xsd:complexType>
<xsd:annotation>
<xsd:documentation xml:lang="en">
This element defines Security Attributes to select and reject.
If there are no Select elements all Attributes are used except
those listed in Reject elements.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Select" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="Reject" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="PolicyStore">
<xsd:complexType>
<xsd:annotation>
<xsd:documentation xml:lang="en">
This element specifies file containing policy document.
There can be multiple such elements.
Content of Type element is not defined yet.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Type" type="xsd:string" minOccurs="1" maxOccurs="1"/>
<xsd:element name="Location" type="xsd:string" minOccurs="1" maxOccurs="1"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="Policy">
<xsd:complexType>
<xsd:annotation>
<xsd:documentation xml:lang="en">
This element contains policy to be processed.
There may be multiple such elements.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:any namespace="##other" processContents="strict" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:anyAttribute namespace="##other" processContents="strict"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="PolicyCombiningAlg" type="xsd:string">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Combining Algorithm for Policies.
For supported names please check documentation. In addition to those there are
also few legacy algorithms provided:
EvaluatorFailsOnDeny,
EvaluatorStopsOnDeny,
EvaluatorStopsOnPermit,
EvaluatorStopsNever.
Unfortunately they behavior is not well defined.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:schema>
|