-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[repository schema] latestEP attribute is redundant #122
Comments
I believe this is a legacy feature from the Basic repository that had separate files for abbreviations, datatypes, enums, fields, components, messages, message contents, categories, sections. All of these files hat latestEP as an attribute of their root element. It indicates the last time an element within this group was added or updated. It is redundant as the highest EP number can easily be determined by a script checking the pedigree attributes (e.g. addedEP, updatedEP) of its sub-elements. If we remove it for fields then it should also be removed for all other elements in the list above. The root element of the files in the Basic repository also had an attribute "version" that was redundant and only exists once in the Unified repository. |
…ty#122 This is a small breaking change but reduces unnecessary maintenance.
The attribute still needs to be removed from the fields element, correct? <xs:element name="fields">
<xs:complexType>
<xs:sequence>
<xs:element name="field" type="fixr:fieldType" minOccurs="0" maxOccurs="unbounded">
<xs:key name="typeKey">
<xs:selector xpath="."/>
<xs:field xpath="@type|@codeSet"/>
</xs:key>
</xs:element>
<xs:element name="annotation" type="fixr:annotation" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="latestEP" type="fixr:EP_t"/>
<xs:attribute ref="xml:base"/>
</xs:complexType>
... |
Had been forgotten when removing it for the other top level elements.
Implemented in RC1 |
This attribute of
<fields>
is redundant to metadata for the repositoryThe text was updated successfully, but these errors were encountered: