audit Schema
Property Element
audit Schema : Property Element

Glossary Item Box

Description

Information about the type of change.
Namespace (none)

Diagram

OldValue Element NewValue Element Sequence Property Element

Overview

Property
Information about the type of change.
Label required
The UI user label of this property. Used to track the history of UDF label renames.
Name required xs:string
The properties logical name. For example, the status of a defect.
Sequence
NewValue xs:string
The value that was set to this property.
OldValue xs:string
The value before the audited event.

Attributes

NameTypeUseDefaultFixedDescription
Label required  The UI user label of this property. Used to track the history of UDF label renames.
Namexs:stringrequired  The properties logical name. For example, the status of a defect.

Source

<xs:element name="Property" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>
        Information about the type of change.
    </xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="NewValue" />
      <xs:element ref="OldValue" />
    </xs:sequence>
    <xs:attribute name="Label" use="required">
      <xs:annotation>
        <xs:documentation>
            The UI user label of this property. Used to track the history of UDF label renames.
        </xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="Name" use="required" type="xs:string">
      <xs:annotation>
        <xs:documentation>
            The properties logical name. For example, the status of a defect.
        </xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
</xs:element>

See Also