Skip to content
This repository has been archived by the owner on Feb 18, 2022. It is now read-only.

Proposed fix for Unit definition #26

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions mvdXML1.2/xsd/mvdXML_V1-2_Draft9.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -162,12 +162,15 @@
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Unit" type="ifc:IfcUnit" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
A Unit element of type IfcUnit from the IFC4 specification.
</xs:documentation>
</xs:annotation>
<xs:element name="Unit">
<xs:complexType>
<xs:group ref="ifc:IfcUnit"/>
<xs:annotation>
<xs:documentation>
A Unit element of type IfcUnit from the IFC4 specification.
</xs:documentation>
</xs:annotation>
Comment on lines +168 to +172
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be an inner element of the xs:element and not xs:complexType.

</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
Expand Down