Skip to content

Commit

Permalink
[skip ci] Fix max-occurs re bad model cardinality
Browse files Browse the repository at this point in the history
This addresses changes that should be handled as determined by upstream
guidance from metaschema-framework maintainers.

metaschema-framework/metaschema-java#221
metaschema-framework/metaschema#44
  • Loading branch information
aj-stein-gsa committed Oct 29, 2024
1 parent 74750a7 commit 417ad9e
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@
<model>
<field ref="name" min-occurs="1" max-occurs="1"/>
<field ref="description" min-occurs="1" max-occurs="1"/>
<field ref="content" min-occurs="1" max-occurs="1"/>
<field ref="pipeline" max-occurs="1"/>
<field ref="content" min-occurs="0" max-occurs="unbounded">
<group-as name="content" in-json="ARRAY"/>
</field>
<assembly ref="expectation" min-occurs="1" max-occurs="unbounded">
<group-as name="expectations" in-json="ARRAY"/>
</assembly>
Expand Down Expand Up @@ -49,7 +50,7 @@
<formal-name>Test Case Pipeline Action</formal-name>
<description>The test case pipeline is a sequence of one or more <code>actions</code> to execute before the test runner executes the test suite.</description>
<model>
<field ref="action">
<field ref="action" max-occurs="unbounded">
<group-as name="actions" in-json="ARRAY"/>
</field>
</model>
Expand Down

0 comments on commit 417ad9e

Please sign in to comment.