Elements and Sections in the Field Audit Setup XML Output File

The following table describes the elements and sections in the field audit setup XML output file.

Table Elements and Sections in the Field Audit Setup XML File

Description Element or Section

<ObjectName> contains the system name of the record type (object), which never changes.

<data:ObjectName>Account</data:ObjectName>

<AuditRecordCreation> specifies whether the creation of records of this record type is tracked (true) or is not tracked (false).

<data:AuditRecordCreation>true
</data:AuditRecordCreation>

<AuditRecordDeletionOrRestore> specifies whether the deletion and restoration of records of this record type are tracked (true) or are not tracked (false).

<data:AuditRecordDeletionOrRestore>true
</data:AuditRecordDeletionOrRestore>

The <ListOfFields> section contains details of the fields that can be audited for the record type.

<data:ListOfFields>
. . .
</data:ListOfFields>

The <Field> section contains the details for one field. It contains the following elements:

  • <Name> contains the system name of the field, which never changes.

  • <IsAudited> specifies whether changes to the field are tracked (true) or are not tracked (false).

<data:ListOfFields>
  <data:Field>
    <data:Name>Furigana Name</data:Name>
    <data:IsAudited>true</data:IsAudited>
  </data:Field>
. . .
</data:ListOfFields>