Use case: IDS user wants to define discrete values for length-based properties.
Possible definition in IDS with enumeration (given example with property thickness and datatype IfcLengthMeasurement and allowed values 24cm, 36cm and 48cm):
<property dataType="IFCLENGTHMEASUREMENT">
<propertySet>
<simpleValue>ElementDimensions</simpleValue>
</propertySet>
<baseName>
<simpleValue>Thickness</simpleValue>
</baseName>
<value>
<xs:restriction base="xs:string">
<xs:enumeration value="0.24" />
<xs:enumeration value="0.36" />
<xs:enumeration value="0.48" />
</xs:restriction>
</value>
</property>
Question: Do we support that in current IDS?
Use case: IDS user wants to define discrete values for length-based properties.
Possible definition in IDS with enumeration (given example with property thickness and datatype IfcLengthMeasurement and allowed values 24cm, 36cm and 48cm):
Question: Do we support that in current IDS?