Skip to content
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

Update allowed version in schemas (#41) #44

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/0___preamble.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ History / Road Map
|Version |Date |Remarks
|1.0 |2019-03-05 |First Public Release of SSP
|1.0.1 |2022-07-25 |Public Release of SSP 1.0.1
|2.0 | |Current Working Draft
|===

Please report issues that you find with this specification to map-ssp_projectlead@googlegroups.com.
Expand Down
2 changes: 1 addition & 1 deletion docs/5___ssd.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The root element of an SSD file *MUST* be a SystemStructureDescription element,
|Attribute |Description
|version |This required attribute specifies the version of this specification that the system description conforms to.
Only major and minor version number are included, the patch version number *MUST NOT* be included in this attribute.
For the current release this *MUST* be 1.0.
For the current release this *MUST* be either 1.0 or 2.0.
|name |This required attribute provides a name, which can be used for purposes of presenting the system structure to the user, for example when selecting individual variant SSDs from an SSP.
|===

Expand Down
2 changes: 1 addition & 1 deletion docs/6___ssv.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ If the SSV is provided as a separate file, the root element *MUST* be a Paramete
|Attribute |Description
|version |This required attribute specifies the version of this specification that the parameter set conforms to.
Only major and minor version number are included, the patch version number *MUST NOT* be included in this attribute.
For the current release this *MUST* be 1.0.
For the current release this *MUST* be either 1.0 or 2.0.
|name |This required attribute provides a name which can be used for purposes of presenting the parameter set to the user.
|===

Expand Down
2 changes: 1 addition & 1 deletion docs/7___ssm.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Implementations *CAN* map the same parameter to multiple names.
|Attribute |Description
|version |This required attribute specifies the version of this specification that the parameter mapping conforms to.
Only major and minor version number are included, the patch version number *MUST NOT* be included in this attribute.
For the current release this *MUST* be 1.0.
For the current release this *MUST* be either 1.0 or 2.0.
|===

==== MappingEntry
Expand Down
2 changes: 1 addition & 1 deletion docs/8___ssb.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This element describes a signal dictionary, which consists of one or more dictio
|Attribute |Description
|version |This required attribute specifies the version of this specification that the parameter mapping conforms to.
Only major and minor version number are included, the patch version number *MUST NOT* be included in this attribute.
For the current release this *MUST* be 1.0.
For the current release this *MUST* be either 1.0 or 2.0.
|===

The following XML child elements are specified for the SignalDictionary element:
Expand Down
3 changes: 2 additions & 1 deletion schema/SystemStructureDescription.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,12 @@
<xs:attribute name="version" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">
Version of SSD format, 2.0-alpha for this release.
Version of SSD format, 1.0 or 2.0-alpha for this release.
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:normalizedString">
<xs:pattern value="1[.]0"/>
<xs:pattern value="2[.][0-9]+(-.+)"/>
</xs:restriction>
</xs:simpleType>
Expand Down
3 changes: 2 additions & 1 deletion schema/SystemStructureDescription11.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,12 @@
<xs:attribute name="version" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">
Version of SSD format, 2.0-alpha for this release.
Version of SSD format, 1.0 or 2.0-alpha for this release.
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:normalizedString">
<xs:pattern value="1[.]0"/>
<xs:pattern value="2[.][0-9]+(-.+)"/>
</xs:restriction>
</xs:simpleType>
Expand Down
3 changes: 2 additions & 1 deletion schema/SystemStructureParameterMapping.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,12 @@
<xs:attribute name="version" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">
Version of SSM format, 2.0-alpha for this release.
Version of SSM format, 1.0 or 2.0-alpha for this release.
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:normalizedString">
<xs:pattern value="1[.]0"/>
<xs:pattern value="2[.][0-9]+(-.+)"/>
</xs:restriction>
</xs:simpleType>
Expand Down
3 changes: 2 additions & 1 deletion schema/SystemStructureParameterValues.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,12 @@
<xs:attribute name="version" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">
Version of SSV format, 2.0-alpha for this release.
Version of SSV format, 1.0 or 2.0-alpha for this release.
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:normalizedString">
<xs:pattern value="1[.]0"/>
<xs:pattern value="2[.][0-9]+(-.+)"/>
</xs:restriction>
</xs:simpleType>
Expand Down
3 changes: 2 additions & 1 deletion schema/SystemStructureSignalDictionary.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,12 @@
<xs:attribute name="version" use="required">
<xs:annotation>
<xs:documentation xml:lang="en">
Version of SSB format, 2.0-alpha for this release.
Version of SSB format, 1.0 or 2.0-alpha for this release.
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:normalizedString">
<xs:pattern value="1[.]0"/>
<xs:pattern value="2[.][0-9]+(-.+)"/>
</xs:restriction>
</xs:simpleType>
Expand Down