In Configuration Manager 2007, the ConfigurationItemReferenceType complex type encapsulates the information that is required for referring to another item. The identity of a configuration item is composed of the three parts below:

  1. AuthoringScope (typically the site Id in Configuration Manager).

  2. Logical name (typically machine generated by the Configuration Manager user interface).

  3. Version number (the version of the referenced configuration item).

<xs:complexType name="ConfigurationItemReferenceType">
	<xs:sequence>
		<xs:any
			processContents="skip"
			minOccurs="0"
			maxOccurs="unbounded"
			namespace="##other"
		 />
	</xs:sequence>
	<xs:attribute name="AuthoringScope"
		type="Name"
		use="required"
	 />
	<xs:attribute name="LogicalName"
		type="Name"
		use="required"
	 />
	<xs:attribute name="Version"
		type="unsignedInt"
		use="required"
	 />
</xs:complexType>

Attributes

Name Type Description

AuthoringScope

Name

Represents the author of the referenced configuration item.

LogicalName

Name

The unique identity of the referenced configuration item.

Version

unsignedInt

The version of the referenced configuration item.

See Also


Send comments about this topic to Microsoft.