Domains Schema
Projects Element
Domains Schema : Projects Element

Glossary Item Box

Description

A collection of projects.
Namespace (none)

Diagram

Project Element Sequence Projects Element

Overview

Projects
A collection of projects.
Sequence
Project 0..∞
A project.
Name required xs:string
The name of the project.

Source

<xs:element name="Projects" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>A collection of projects.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element name="Project" minOccurs="0" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>A project.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:attribute name="Name" type="xs:string" use="required">
            <xs:annotation>
              <xs:documentation>
                                    The name of the project.
                                </xs:documentation>
            </xs:annotation>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
</xs:element>

See Also