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 BenchmarkValue element #163

Merged
merged 1 commit into from
Nov 7, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions BuildingSync.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -2271,6 +2271,18 @@
</xs:simpleType>
</xs:element>
<xs:element name="BenchmarkYear" type="xs:gYear" minOccurs="0"/>
<xs:element name="BenchmarkValue" minOccurs="0">
<xs:annotation>
<xs:documentation>The calculated score or rating for the benchmark scenario.</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:sequence>
</xs:complexType>
</xs:element>
Expand Down
19 changes: 19 additions & 0 deletions proposals/2019/Add BenchmarkValue element.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Add BenchmarkValue element

## Overview

This proposal is to add the `auc:BenchmarkValue` child element to the `auc:Benchmark` element.

## Justification

The `auc:Assessment` element (a child element of the `auc:Building` element) provides a mechanism to assert programs that issue energy labels, ratings, scores, certifications, etc., at the building level; however, there is no corresponding mechanism at the scenario level.

The `auc:Benchmark` element (a child element of the `auc:ScenarioType` element) is available; however, there is nowhere within the schema to assert the calculated score or rating.

## Implementation

1. Add `auc:BenchmarkValue` child element to `auc:Benchmark` element.

## References

N/A