2012-07-08 07:52:10 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2012-07-10 15:59:36 +00:00
|
|
|
<xs:schema elementFormDefault="qualified"
|
2012-07-08 07:52:10 +00:00
|
|
|
xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
|
|
|
|
|
|
|
<xs:complexType name="NamedItem">
|
|
|
|
<xs:annotation>
|
2012-07-12 14:02:44 +00:00
|
|
|
<xs:documentation>
|
|
|
|
>Generic item with optional name and brief
|
2012-07-10 15:59:36 +00:00
|
|
|
description
|
2012-07-08 07:52:10 +00:00
|
|
|
</xs:documentation>
|
|
|
|
</xs:annotation>
|
2012-07-12 14:02:44 +00:00
|
|
|
<xs:sequence>
|
|
|
|
<xs:element name="name" maxOccurs="1" minOccurs="1">
|
|
|
|
<xs:annotation>
|
|
|
|
<xs:documentation>Name of the object.</xs:documentation>
|
|
|
|
</xs:annotation>
|
|
|
|
<xs:simpleType>
|
|
|
|
<xs:restriction base="xs:string">
|
|
|
|
<xs:whiteSpace value="collapse"></xs:whiteSpace>
|
|
|
|
<xs:pattern value="\w[\w\d_]*"></xs:pattern>
|
|
|
|
<xs:minLength value="1"></xs:minLength>
|
|
|
|
<xs:maxLength value="24"></xs:maxLength>
|
|
|
|
</xs:restriction>
|
|
|
|
</xs:simpleType>
|
|
|
|
</xs:element>
|
|
|
|
</xs:sequence>
|
2012-07-08 07:52:10 +00:00
|
|
|
</xs:complexType>
|
|
|
|
|
|
|
|
<xs:complexType name="DocumentedItem">
|
|
|
|
<xs:annotation>
|
2012-07-10 15:59:36 +00:00
|
|
|
<xs:documentation>>Something that can have a detailed description
|
|
|
|
attached
|
2012-07-08 07:52:10 +00:00
|
|
|
</xs:documentation>
|
|
|
|
</xs:annotation>
|
|
|
|
<xs:complexContent>
|
|
|
|
<xs:extension base="NamedItem">
|
2012-07-12 14:02:44 +00:00
|
|
|
<xs:sequence>
|
|
|
|
<xs:element name="brief" maxOccurs="1" minOccurs="1">
|
|
|
|
<xs:annotation>
|
|
|
|
<xs:documentation>
|
|
|
|
Brief description of the object.
|
|
|
|
</xs:documentation>
|
|
|
|
</xs:annotation>
|
|
|
|
<xs:simpleType>
|
|
|
|
<xs:restriction base="xs:string">
|
|
|
|
<xs:minLength value="0"></xs:minLength>
|
|
|
|
<xs:maxLength value="72"></xs:maxLength>
|
|
|
|
<xs:whiteSpace value="collapse"></xs:whiteSpace>
|
|
|
|
</xs:restriction>
|
|
|
|
</xs:simpleType>
|
|
|
|
</xs:element>
|
|
|
|
<xs:element name="details" maxOccurs="1" minOccurs="0">
|
|
|
|
<xs:annotation>
|
|
|
|
<xs:documentation>
|
|
|
|
Object documentation as text, does not preserve
|
|
|
|
formatting.
|
|
|
|
</xs:documentation>
|
|
|
|
</xs:annotation>
|
|
|
|
<xs:simpleType>
|
|
|
|
<xs:restriction base="xs:string">
|
|
|
|
<xs:whiteSpace value="collapse"></xs:whiteSpace>
|
|
|
|
</xs:restriction>
|
|
|
|
</xs:simpleType>
|
|
|
|
</xs:element>
|
|
|
|
<xs:element name="pre" maxOccurs="unbounded" minOccurs="0">
|
2012-07-10 15:59:36 +00:00
|
|
|
<xs:annotation>
|
2012-07-12 14:02:44 +00:00
|
|
|
<xs:documentation>
|
|
|
|
Object pre-requisites as text, does not preserve
|
|
|
|
formatting.
|
|
|
|
</xs:documentation>
|
2012-07-10 15:59:36 +00:00
|
|
|
</xs:annotation>
|
2012-07-12 14:02:44 +00:00
|
|
|
<xs:simpleType>
|
|
|
|
<xs:restriction base="xs:string">
|
|
|
|
<xs:whiteSpace value="collapse"></xs:whiteSpace>
|
|
|
|
</xs:restriction>
|
|
|
|
</xs:simpleType>
|
2012-07-08 07:52:10 +00:00
|
|
|
</xs:element>
|
2012-07-12 14:02:44 +00:00
|
|
|
<xs:element name="post" maxOccurs="unbounded" minOccurs="0">
|
|
|
|
<xs:annotation>
|
|
|
|
<xs:documentation>
|
|
|
|
Object post-requisites as text, does not preserve
|
|
|
|
formatting.
|
|
|
|
</xs:documentation>
|
|
|
|
</xs:annotation>
|
|
|
|
<xs:simpleType>
|
|
|
|
<xs:restriction base="xs:string">
|
|
|
|
<xs:whiteSpace value="collapse"></xs:whiteSpace>
|
|
|
|
</xs:restriction>
|
|
|
|
</xs:simpleType>
|
|
|
|
</xs:element>
|
|
|
|
<xs:element name="note" maxOccurs="unbounded" minOccurs="0">
|
|
|
|
<xs:annotation>
|
|
|
|
<xs:documentation>
|
|
|
|
Object note as text, does not preserve formatting.
|
|
|
|
</xs:documentation>
|
|
|
|
</xs:annotation>
|
|
|
|
<xs:simpleType>
|
|
|
|
<xs:restriction base="xs:string">
|
|
|
|
<xs:whiteSpace value="collapse"></xs:whiteSpace>
|
|
|
|
</xs:restriction>
|
|
|
|
</xs:simpleType>
|
|
|
|
</xs:element>
|
|
|
|
</xs:sequence>
|
2012-07-08 07:52:10 +00:00
|
|
|
</xs:extension>
|
|
|
|
</xs:complexContent>
|
2012-07-10 15:59:36 +00:00
|
|
|
</xs:complexType>
|
2012-07-08 07:52:10 +00:00
|
|
|
|
|
|
|
</xs:schema>
|