Please allow me a tiny question, I cannot find it in the docs.
PARTY_IDENTITY[at0001] matches { -- person name
29 name matches {
30 DV_TEXT matches {
31 value matches {"legal identity"}
32 }
33 }
34 details matches {
35 ITEM_LIST[at0002] matches {
What is the cardinality of details (so, what is the default cardinality)
actually, "details" has no cardinality, since it is a single valued
attribute (type ITEM_LIST); so it can only have existence. But ITEM_LIST
is a container, so its "items" attribute must have cardinality, which
will default to {0..*}
Please allow me a tiny question, I cannot find it in the docs.
PARTY_IDENTITY[at0001] matches { -- person name
29 name matches {
30 DV_TEXT matches {
31 value matches {"legal identity"}
32 }
33 }
34 details matches {
35 ITEM_LIST[at0002] matches {
What is the cardinality of details (so, what is the default cardinality)
actually, "details" has no cardinality, since it is a single valued
attribute (type ITEM_LIST); so it can only have existence. But ITEM_LIST
is a container, so its "items" attribute must have cardinality, which
will default to {0..*}