Skip to content

Commit e21043b

Browse files
committed
Fix #4465. Update IfcTester to IDS 0.9.7
1 parent 395598d commit e21043b

6 files changed

Lines changed: 281 additions & 271 deletions

File tree

src/ifctester/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,13 @@ my_ids = ids.Ids(title="My IDS")
1616
my_spec = ids.Specification(name="My first specification")
1717
my_spec.applicability.append(ids.Entity(name="IFCWALL"))
1818
property = ids.Property(
19-
name="IsExternal",
19+
baseName="IsExternal",
2020
value="TRUE",
2121
propertySet="Pset_WallCommon",
22-
datatype="IfcBoolean",
22+
dataType="IfcBoolean",
2323
uri="https://identifier.buildingsmart.org/uri/.../prop/LoadBearing",
2424
instructions="Walls need to be load bearing.",
25-
minOccurs=1,
26-
maxOccurs="unbounded")
25+
cardinality="required")
2726
my_spec.requirements.append(property)
2827
my_ids.specifications.append(my_spec)
2928

0 commit comments

Comments
 (0)