8000 Requires AssemblyEffectiveRValue to be > 0 by shorowit · Pull Request #257 · hpxmlwg/hpxml · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Requires AssemblyEffectiveRValue to be > 0 #257

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

Merged
merged 1 commit into from
Jun 11, 2021
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion schemas/BaseElements.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
<xs:group ref="SystemInfo"/>
<xs:element minOccurs="0" name="InsulationGrade" type="InsulationGrade"/>
<xs:element minOccurs="0" name="InsulationCondition" type="InsulationCondition"/>
<xs:element minOccurs="0" name="AssemblyEffectiveRValue" type="RValue">
<xs:element minOccurs="0" name="AssemblyEffectiveRValue" type="AssemblyRValue">
<xs:annotation>
<xs:documentation>This should indicate the effective R-value of the complete assembly including any air films or other treatments.</xs:documentation>
</xs:annotation>
Expand Down
14 changes: 13 additions & 1 deletion schemas/HPXMLDataTypes.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -1256,6 +1256,18 @@
</xs:simpleContent>
</xs:complexType>
<!--Insulation Below-->
<xs:simpleType name="AssemblyRValue_simple">
<xs:restriction base="xs:double">
<xs:minExclusive value="0"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="AssemblyRValue">
<xs:simpleContent>
<xs:extension base="AssemblyRValue_simple">
<xs:attribute name="dataSource" type="DataSource"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="DoorThirdPartyCertifications_simple">
<xs:restriction base="xs:string">
<xs:enumeration value="Energy Star"/>
Expand Down Expand Up @@ -4530,4 +4542,4 @@
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:schema>
</xs:schema>
0