Domains Schema
Domains Element
Domains Schema : Domains Element

Glossary Item Box

Description

The collection of logical groups of projects.
Namespace (none)

Diagram

Domain Element Sequence Domains Element

Overview

Domains
The collection of logical groups of projects.
Sequence
Domain 0..∞
A container for projects.
Name required xs:string
The name of the domain.
Sequence
Projects optional
A collection of projects.

Source

<xs:element name="Domains" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>
                The collection of logical groups of projects.
            </xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element name="Domain" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>A container for projects.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:annotation>
              <xs:documentation>Projects that are part of the domain</xs:documentation>
            </xs:annotation>
            <xs:element ref="Projects" minOccurs="0" maxOccurs="1" />
          </xs:sequence>
          <xs:attribute name="Name" type="xs:string" use="required">
            <xs:annotation>
              <xs:documentation>
                                    The name of the domain.
                                </xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
</xs:element>

See Also