Skip to content

Commit

Permalink
Added new optional elements to the status
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed Mar 19, 2024
1 parent 9b15d83 commit 9bb23e5
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ Please ensure that your stack size is at least 1MB (for Saxon). Using the Oracle

# News and noteworthy

* v9.1.1 - work in progress
* Extended the VES status XSD with new optional elements
* v9.1.0 - 2024-03-09
* Updated to ph-schematron 8.0.0 using Saxon 12.x
* Updated to ph-diver 1.1.0
Expand Down
28 changes: 27 additions & 1 deletion phive-ves-model/src/main/resources/schemas/ves/ves-1.0.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<xs:documentation>
This XML Schema is used to describe "Validation Execution Sets" as used by the phive validation library.

Version: 2023-08-23
Version: 2024-03-19
</xs:documentation>
</xs:annotation>

Expand Down Expand Up @@ -456,6 +456,18 @@ Version: 2023-08-23
</xs:documentation>
</xs:annotation>
</xs:element>

<xs:complexType name="VesStatusReplacementType">
<xs:sequence>
<xs:group ref="VesCoordinateGroup">
<xs:annotation>
<xs:documentation>
The structured VESID of the replacement VES. Must have the same type as the source VES.
</xs:documentation>
</xs:annotation>
</xs:group>
</xs:sequence>
</xs:complexType>

<xs:complexType name="VesStatusType">
<xs:sequence>
Expand Down Expand Up @@ -499,6 +511,20 @@ Version: 2023-08-23
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="deprecationReason" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>
This element provides the possibility to provide the reason for deprecation.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="replacement" type="VesStatusReplacementType" minOccurs="0">
<xs:annotation>
<xs:documentation>
In case the element coordinates are deprecated, use this resource instead.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>

Expand Down

0 comments on commit 9bb23e5

Please sign in to comment.