Domains Schema
Domain Element
Domains Schema > Domains Element : Domain Element

Glossary Item Box

Description

A container for projects.
Namespace (none)

Diagram

Projects Element Sequence Domain Element

Overview

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

Attributes

NameTypeUseDefaultFixedDescription
Namexs:stringrequired  The name of the domain.

Source

<xs:element name="Domain" minOccurs="0" maxOccurs="unbounded" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <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>

See Also