Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add choice for FanInstalledFlowRate. Will deprecate InstalledFanFlowRate. #263

Merged
Merged
Changes from all commits
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
38 changes: 26 additions & 12 deletions BuildingSync.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -10755,18 +10755,32 @@
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="InstalledFlowRate" minOccurs="0">
<xs:annotation>
<xs:documentation>Actual flow rate of fan under normal operating conditions. (cfm)</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:decimal">
<xs:attribute ref="auc:Source"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:choice>
<xs:element name="InstalledFlowRate" minOccurs="0">
<xs:annotation>
<xs:documentation>Actual flow rate of fan under normal operating conditions. WARNING: this element is being deprecated, use FanInstalledFlowRate instead. (cfm)</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:decimal">
<xs:attribute ref="auc:Source"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="FanInstalledFlowRate" minOccurs="0">
<xs:annotation>
<xs:documentation>Actual flow rate of fan under normal operating conditions. (cfm)</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:decimal">
<xs:attribute ref="auc:Source"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:choice>
<xs:element name="MinimumFlowRate" minOccurs="0">
<xs:annotation>
<xs:documentation>The lowest rated flow rate for a fan. (cfm)</xs:documentation>
Expand Down