user Schema
User Element
user Schema : User Element

Glossary Item Box

Description

A user.
Namespace (none)

Diagram

userAvatarCache Element UserActive Element phone Element email Element description Element Sequence User Element

Overview

User
A user.
Name required xs:string
The user name for use within ALM.
FullName required xs:string
The name of the person this ALM user belongs to.
Sequence
description xs:string
The user description.
email xs:string
The email for notifications.
phone xs:string
Phone number.
UserActive xs:string
Indicates whether the user is active.
userAvatarCache xs:int
Indicates a version number that is used for the avatar cache

Attributes

NameTypeUseDefaultFixedDescription
Namexs:stringrequired  The user name for use within ALM.
FullNamexs:stringrequired  The name of the person this ALM user belongs to.

Source

<xs:element name="User" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>
        A user.
      </xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="description" />
      <xs:element ref="email" />
      <xs:element ref="phone" />
      <xs:element ref="UserActive" />
      <xs:element ref="userAvatarCache" />
    </xs:sequence>
    <xs:attribute name="Name" type="xs:string" use="required">
      <xs:annotation>
        <xs:documentation>
            The user name for use within ALM.
          </xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="FullName" type="xs:string" use="required">
      <xs:annotation>
        <xs:documentation>
            The name of the person this ALM user belongs to.
          </xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
</xs:element>

See Also