diff options
Diffstat (limited to 'Tools/XMLSchema')
-rw-r--r-- | Tools/XMLSchema/FrameworkDataElements.xsd | 8 | ||||
-rw-r--r-- | Tools/XMLSchema/SurfaceArea.xsd | 4 |
2 files changed, 12 insertions, 0 deletions
diff --git a/Tools/XMLSchema/FrameworkDataElements.xsd b/Tools/XMLSchema/FrameworkDataElements.xsd index 59bdcbdebe..783e11375d 100644 --- a/Tools/XMLSchema/FrameworkDataElements.xsd +++ b/Tools/XMLSchema/FrameworkDataElements.xsd @@ -548,6 +548,10 @@ <xs:element minOccurs="1" maxOccurs="1" name="ModuleGuid" type="GuidType"/>
<xs:element minOccurs="1" maxOccurs="1" name="ModuleVersion" type="VersionDataType"/>
</xs:sequence>
+ <!-- The Id is a number used to track heritage the first entry will be 0 and increment from then on. -->
+ <xs:attribute name="Id" type="xs:nonNegativeInteger" use="optional"/>
+ <!-- If the original module was installed from a FAR, track the FAR it came from. -->
+ <xs:attribute name="FarGuid" type="GuidType" use="optional"/>
</xs:complexType>
</xs:element>
</xs:sequence>
@@ -603,6 +607,10 @@ <xs:element minOccurs="1" maxOccurs="1" name="PackageGuid" type="GuidType"/>
<xs:element minOccurs="1" maxOccurs="1" name="PackageVersion" type="VersionDataType"/>
</xs:sequence>
+ <!-- The Id is a number used to track heritage the first entry will be 0 and increment from then on. -->
+ <xs:attribute name="Id" type="xs:nonNegativeInteger" use="optional"/>
+ <!-- If the original Package was installed from a FAR, track the FAR it came from. -->
+ <xs:attribute name="FarGuid" type="GuidType" use="optional"/>
</xs:complexType>
</xs:element>
</xs:sequence>
diff --git a/Tools/XMLSchema/SurfaceArea.xsd b/Tools/XMLSchema/SurfaceArea.xsd index 76461be78d..97104e6bf5 100644 --- a/Tools/XMLSchema/SurfaceArea.xsd +++ b/Tools/XMLSchema/SurfaceArea.xsd @@ -118,6 +118,10 @@ <xs:element minOccurs="1" maxOccurs="1" name="PlatformGuid" type="GuidType"/>
<xs:element minOccurs="1" maxOccurs="1" name="PlatformVersion" type="VersionDataType"/>
</xs:sequence>
+ <!-- The Id is a number used to track heritage the first entry will be 0 and increment from then on. -->
+ <xs:attribute name="Id" type="xs:nonNegativeInteger" use="optional"/>
+ <!-- If the original module was installed from a FAR, track the FAR it came from. -->
+ <xs:attribute name="FarGuid" type="GuidType" use="optional"/>
</xs:complexType>
</xs:element>
</xs:sequence>
|