From a855c4042681300ef58cb40ace3d5c75edee646d Mon Sep 17 00:00:00 2001 From: Vasile-Corjan <124814527+Vasile-Corjan@users.noreply.github.com> Date: Thu, 15 Jun 2023 20:04:16 +0200 Subject: [PATCH] Update README.md I have added the parameters "minOccurs" and "maxOccurs" --- src/ifctester/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ifctester/README.md b/src/ifctester/README.md index 336f9d8853..77d1b08486 100644 --- a/src/ifctester/README.md +++ b/src/ifctester/README.md @@ -21,7 +21,9 @@ property = ids.Property( propertySet="Pset_WallCommon", measure="IfcBoolean", uri="https://identifier.buildingsmart.org/uri/.../prop/LoadBearing", - instructions="Walls need to be load bearing.") + instructions="Walls need to be load bearing.", + minOccurs=1, + maxOccurs=1) my_spec.requirements.append(property) my_ids.specifications.append(my_spec)