Skip to content

Commit

Permalink
Fix cardinality of etension element in schema to 0-n
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
  • Loading branch information
lukasj committed Mar 15, 2024
1 parent 864c56d commit 5f76aa0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,8 @@
</xsd:complexType>
</xsd:element>

<xsd:any namespace="##other" processContents="lax">
<xsd:any namespace="##other" processContents="lax"
minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>
An extension point for integration related configuration, e.g. cdi:
Expand Down
3 changes: 2 additions & 1 deletion spec/src/main/asciidoc/ch08-entity-packaging.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,8 @@ This section provides the XML schema for the `persistence.xml` file.
</xsd:complexType>
</xsd:element>
<xsd:any namespace="##other" processContents="lax">
<xsd:any namespace="##other" processContents="lax"
minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>
An extension point for integration related configuration, e.g. cdi:
Expand Down

0 comments on commit 5f76aa0

Please sign in to comment.