Line 152: |
|
|
|
|
|
= AHPTool Schemas = |
|
= AHPTool Schemas = |
|
|
|
|
|
|
+ |
The schemas for variable XML are in this section.
|
|
|
|
|
|
|
+ |
== Issues Schema ==
|
|
|
|
|
|
|
+ |
<pre><xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
|
+ |
<xsd:complexType name="Issues">
|
|
|
+ |
<xsd:sequence>
|
|
|
|
|
|
|
+ |
<xsd:element name="issue" type="Issue" minOccurs="0" maxOccurs="unbounded"/>
|
|
|
+ |
</xsd:sequence>
|
|
|
+ |
<xsd:attribute name="date" type="xsd:string" use="required"/>
|
|
|
|
|
|
|
+ |
</xsd:complexType>
|
|
|
+ |
<xsd:complexType name="Issue">
|
|
|
|
|
|
|
+ |
<xsd:sequence>
|
|
|
+ |
<xsd:element name="name" type="xsd:string" minOccurs="1"/>
|
|
|
+ |
<xsd:element name="type" type="xsd:string" minOccurs="0"/>
|
|
|
+ |
<xsd:element name="status" type="xsd:string" minOccurs="0"/>
|
|
|
+ |
<xsd:element name="description" type="xsd:string" minOccurs="0"/>
|
|
|
|
|
|
|
+ |
</xsd:sequence>
|
|
|
+ |
<xsd:attribute name="issue-tracker" type="xsd:string" use="required"/>
|
|
|
+ |
<xsd:attribute name="id" type="xsd:string" use="required"/>
|
|
|
+ |
<xsd:attribute name="change-id" type="xsd:long" use="optional"/>
|
|
|
|
|
|
|
+ |
</xsd:complexType>
|
|
|
+ |
<xsd:element name="issues" type="Issues"/>
|
|
|
+ |
</xsd:schema> </pre>
|
|
|
|
|
|
|
+ |
== Properties Schema ==
|
|
|
|
|
|
|
+ |
<pre><xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
|
|
|
|
|
+ |
<xsd:complexType name="Properties">
|
|
|
+ |
<xsd:sequence>
|
|
|
+ |
<xsd:element name="property" type="Property" minOccurs="0" maxOccurs="unbounded"/>
|
|
|
+ |
</xsd:sequence>
|
|
|
+ |
</xsd:complexType>
|
|
|
|
|
|
|
+ |
<xsd:complexType name="Property">
|
|
|
+ |
<xsd:simpleContent>
|
|
|
|
|
|
|
+ |
<xsd:extension base="xsd:string">
|
|
|
+ |
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
|
|
+ |
<xsd:attribute name="secure" type="xsd:boolean"/>
|
|
|
|
|
|
|
+ |
</xsd:extension>
|
|
|
+ |
</xsd:simpleContent>
|
|
|
+ |
</xsd:complexType>
|
|
|
|
|
|
|
+ |
<xsd:element name="properties" type="Properties"/>
|
|
|
|
|
|
|
+ |
</xsd:schema> </pre>
|