Compartilhar via


VersionedId element

The unique identity of a job or an assessment. The identity uses a GUID and standard version number.

Usage

<VersionedId>
  child elements
</VersionedId>

Attributes

There are no attributes.

Child elements

Element Description
Guid
A GUID representing the unique identity. The GUID must be in the registry format and the open and close braces are required.

Version
A standard four part version number. The version node contains four mandatory sub nodes making up a standard Microsoft four part version number. AXE makes no assumptions about the meaning of each field. Version numbers must all be simple integers equal to or greater than zero.

Child element sequence

(
  Guid, 
  Version
)

Parent elements

Element Description
AssessmentManifest
The root node of the assessment.

AxeAssessmentManifest
This is the root node of an assessment manifest.

AxeJobManifest
Name of the root node of the assessment.

Remarks

The VersionedId element should always be at the top of the file in the first node after the document node so that the Id can be determined by a streaming XML reader early in the reading process.

AXE compares versions as either the same, or different and does not use a greater (or later) than relationship between assessments.

Examples

The following example demonstrates this element.

<VersionedId>
    <Guid>{73F635A4-0F2A-44e1-A7B7-927A17088561}</Guid>
    <Version>
        <Major>1</Major>
        <Minor>1</Minor>
        <Build>1</Build>
        <Revision>1</Revision>
    </Version>
</VersionedId>

Element information

Can be empty No

See also

AXE Assessment Manifest

AXE Job Manifest