You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation for FixedValueMap (p. 114) provides the following description: "Links a Component (source or target) to a fixed value.".
However, the Relationship diagram on page 111 has the following cardinality between FixedValueMap and Component: 0..*. Should it not be 1 instead?
The XML schemas are in line with the description (i.e. only one component is referenced):
<xs:complexTypename="FixedValueMapType">
<xs:annotation>
<xs:documentation>FixedValueMapType defines the structure for providing a fixed value for a source or target component.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extensionbase="common:AnnotableType">
<xs:sequence>
<xs:choice>
<xs:elementname="Source"type="common:IDType"/>
<xs:elementname="Target"type="common:IDType"/>
</xs:choice>
<xs:elementname="Value"type="xs:string"minOccurs="0"maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The fixed value for the component.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
Thanks!
The text was updated successfully, but these errors were encountered:
Indeed, the relationship seems wrong, as one Component should be mapped in each FixedValueMap.
This is a bug in the IM.
In addition, it looks like the schema needs also some attention, as it now allows 0 to unbounded values, where there should be only one fixed value. @dosse does this makes sense?
I also see that in the json-schema it is allowed to have 1..* values.
The documentation for
FixedValueMap
(p. 114) provides the following description: "Links a Component (source or target) to a fixed value.".However, the Relationship diagram on page 111 has the following cardinality between
FixedValueMap
andComponent
:0..*
. Should it not be1
instead?The XML schemas are in line with the description (i.e. only one component is referenced):
Thanks!
The text was updated successfully, but these errors were encountered: