Skip to content
Draft
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
19 changes: 17 additions & 2 deletions schemas/BaseElements.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -1153,10 +1153,21 @@
</xs:element>
<xs:element minOccurs="0" name="Orientation" type="OrientationType"/>
<xs:element minOccurs="0" name="DoorType" type="DoorType"/>
<xs:element minOccurs="0" name="DoorDescription" type="DoorDescription"/>
<xs:element name="DoorMaterial" type="DoorMaterial" minOccurs="0"/>
<xs:element minOccurs="0" name="WeatherStripping" type="HPXMLBoolean"/>
<xs:element name="StormDoor" type="HPXMLBoolean" minOccurs="0"/>
<xs:element name="RValue" type="RValue" minOccurs="0"/>
<xs:element minOccurs="0" name="UFactor" type="UFactor">
<xs:annotation>
<xs:documentation>Including interior/exterior air films.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="SHGC" type="SHGC"/>
<xs:element name="RValue" type="RValue" minOccurs="0">
<xs:annotation>
<xs:documentation>Including interior/exterior air films.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="LeakinessDescription" type="BuildingLeakiness"/>
<xs:element minOccurs="0" name="PerformanceClass" type="PerformanceClass"/>
<xs:element maxOccurs="unbounded" minOccurs="0" name="ThirdPartyCertification" type="DoorThirdPartyCertifications"/>
Expand Down Expand Up @@ -4456,7 +4467,11 @@
<xs:element minOccurs="0" name="GlassType" type="GlassType"/>
<xs:element minOccurs="0" name="GasFill" type="GasFill"/>
<xs:element name="Condition" type="WindowCondition" minOccurs="0"/>
<xs:element name="UFactor" type="UFactor" minOccurs="0"/>
<xs:element name="UFactor" type="UFactor" minOccurs="0">
<xs:annotation>
<xs:documentation>Including interior/exterior air films.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SHGC" type="SHGC" minOccurs="0"/>
<xs:element minOccurs="0" name="VisibleTransmittance" type="Fraction"/>
<xs:element name="NFRCCertified" type="HPXMLBoolean" minOccurs="0"/>
Expand Down
19 changes: 19 additions & 0 deletions schemas/HPXMLDataTypes.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -4592,4 +4592,23 @@
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="DoorDescription_simple">
<xs:restriction base="xs:string">
<xs:enumeration value="embossed"/>
<xs:enumeration value="flush"/>
<xs:enumeration value="full lite"/>
<xs:enumeration value="1/2 - lite"/>
<xs:enumeration value="1/4 - lite"/>
<xs:enumeration value="3/4 - lite"/>
<xs:enumeration value="raised panel"/>
<xs:enumeration value="other"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="DoorDescription">
<xs:simpleContent>
<xs:extension base="DoorDescription_simple">
<xs:attribute name="dataSource" type="DataSource"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:schema>