In Configuration Manager 2007, the ConfigurationItemWithContentsType complex type is a specialization of a configuration item that also contains parts and settings (and rules that can reference parent parts and settings). This is the base type for all non-baseline configuration items.

<xs:complexType name="ConfigurationItemWithContentsType"
	abstract="true"
>
	<xs:complexContent>
		<xs:extension
			base="ConfigurationItemType"
		>
			<xs:sequence>
				<xs:element name="Parts">
					<xs:complexType>
						<xs:sequence>
							<xs:element name="ParentReferences">
								<xs:complexType>
									<xs:sequence>
										<xs:element
											minOccurs="0"
											maxOccurs="unbounded"
											ref="ParentPartReference"
										 />
									</xs:sequence>
								</xs:complexType>
							</xs:element>
							<xs:element
								minOccurs="0"
								maxOccurs="unbounded"
								ref="Part"
							 />
						</xs:sequence>
					</xs:complexType>
				</xs:element>
				<xs:element name="Settings">
					<xs:complexType>
						<xs:sequence>
							<xs:element
								ref="RootComplexSetting"
							 />
						</xs:sequence>
					</xs:complexType>
				</xs:element>
			</xs:sequence>
		</xs:extension>
	</xs:complexContent>
</xs:complexType>

Child Elements

Element Type Description

ParentReferences

 

References to parts that are defined in ancestor configuration items.

Parts

 

Defines the set of parts that is owned by this configuration item.

Settings

 

References to simple settings that are defined by ancestor configuration items.

Attributes

Name Type Description

AuthoringScopeId

xs:Name

The unique identity of the author for this configuration item.

LogicalName

tns:LogicalName

The unique identity of the configuration item within the authoring scope.

Version

unsignedInt

The version number of the configuration item.

See Also


Send comments about this topic to Microsoft.