Skip to content

Commit

Permalink
Correctie op weergeven minimum/maximum waarden inm Json schema
Browse files Browse the repository at this point in the history
Minimum waarde voor EP is "inclusief".
<ep:min-value> wordt <ep:min-value-inclusive>, en zo ook voor
max-waarde.

Bugfix.
  • Loading branch information
arjan authored and arjan committed Oct 28, 2024
1 parent ec01d50 commit eeaaeea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/resources/xsl/EpCompiler/MIM1.1/MIM2EP-core.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -876,12 +876,12 @@
<xsl:function name="imf:get-props" as="element()*">
<xsl:param name="this"/>

<ep:min-value>
<ep:min-value-inclusive>
<xsl:value-of select="imf:get-kenmerk($this,'minimumwaarde')"/>
</ep:min-value>
<ep:max-value>
</ep:min-value-inclusive>
<ep:max-value-inclusive>
<xsl:value-of select="imf:get-kenmerk($this,'maximumwaarde')"/>
</ep:max-value>
</ep:max-value-inclusive>
<ep:min-length>
<xsl:value-of select="imf:get-kenmerk($this,'minimumlengte')"/>
</ep:min-length>
Expand Down

0 comments on commit eeaaeea

Please sign in to comment.