Skip to content
Open
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
1 change: 1 addition & 0 deletions examples/full.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
<categories>
<category>apartment</category>
</categories>
<occupancyPercentage date="2020-01-23">75</occupancyPercentage>
<characteristics>
<areaBwf>123.45</areaBwf>
<areaNwf>123.45</areaNwf>
Expand Down
16 changes: 16 additions & 0 deletions schema/schema.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -1667,6 +1667,22 @@
</xs:annotation>
</xs:element>
<!-- additional information about the data itself -->
<xs:element name="occupancyPercentage" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describes the precentage the property is occupied at the given date.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="date" type="xs:date" use="required">
<xs:annotation>
<xs:documentation>The day when the percentage was evaluated.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:all>
<xs:attribute type="xs:string" name="id" use="required">
<xs:annotation>
Expand Down