-
Notifications
You must be signed in to change notification settings - Fork 22
/
BuildingSync.xsd
17387 lines (17387 loc) · 890 KB
/
BuildingSync.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:auc="http://buildingsync.net/schemas/bedes-auc/2019" xmlns:gbxml="http://www.gbxml.org/schema" targetNamespace="http://buildingsync.net/schemas/bedes-auc/2019" elementFormDefault="qualified" attributeFormDefault="unqualified" version="2.6.0">
<xs:import namespace="http://www.gbxml.org/schema" schemaLocation="https://github.com/BuildingSync/gbXML_Schemas/releases/download/v6.01/GreenBuildingXML_Ver6.01.xsd"/>
<xs:annotation>
<xs:documentation>BuildingSync Schema - Version 2.6.0</xs:documentation>
<xs:documentation xmlns="http://www.w3.org/1999/xhtml">
<h1>BuildingSync Schema Deprecation Policy</h1>
<p>This document details the deprecation policy for the BuildingSync Schema.</p>
<h2>Deprecating schema elements</h2>
<p>Since the development of the BuildingSync Schema is application-driven, the schema document itself has evolved over time to reflect the evolving understanding of the problem space.</p>
<p>
<b>Rule #1: Schema elements may only be removed by incrementing the major version of the schema document.</b>
</p>
<p>Once a schema element has been added to the schema document at a particular version, it cannot be removed from that version or have its behavior significantly changed, regardless of track.</p>
</xs:documentation>
</xs:annotation>
<xs:element name="BuildingSync">
<xs:complexType>
<xs:sequence>
<xs:element name="Programs" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="Program" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Authorized or supported program such as rebate or audit.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="ProgramDate" type="xs:date" minOccurs="0">
<xs:annotation>
<xs:documentation>Date associated with the program.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ProgramFundingSource" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>The source of funding or sponsor of the program.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ProgramClassification" minOccurs="0">
<xs:annotation>
<xs:documentation>The classification or type of the program.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Audit"/>
<xs:enumeration value="Performance"/>
<xs:enumeration value="Deemed"/>
<xs:enumeration value="Retrofit"/>
<xs:enumeration value="Rebate"/>
<xs:enumeration value="Other"/>
<xs:enumeration value="Not Applicable"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Facilities">
<xs:complexType>
<xs:sequence>
<xs:element name="Facility" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A group of sites which contain buildings.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Sites" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="Site" type="auc:SiteType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Systems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="HVACSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="HVACSystem" type="auc:HVACSystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="LightingSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="LightingSystem" type="auc:LightingSystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DomesticHotWaterSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="DomesticHotWaterSystem" type="auc:DomesticHotWaterSystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="CookingSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="CookingSystem" type="auc:CookingSystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="RefrigerationSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="RefrigerationSystem" type="auc:RefrigerationSystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DishwasherSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="DishwasherSystem" type="auc:DishwasherSystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="LaundrySystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="LaundrySystem" type="auc:LaundrySystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="PumpSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="PumpSystem" type="auc:PumpSystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="FanSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="FanSystem" type="auc:FanSystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="MotorSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="MotorSystem" type="auc:MotorSystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="HeatRecoverySystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="HeatRecoverySystem" type="auc:HeatRecoverySystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="WallSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="WallSystem" type="auc:WallSystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="RoofSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="RoofSystem" type="auc:RoofSystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="CeilingSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="CeilingSystem" type="auc:CeilingSystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="FenestrationSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="FenestrationSystem" type="auc:FenestrationSystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ExteriorFloorSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="ExteriorFloorSystem" type="auc:ExteriorFloorSystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="FoundationSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="FoundationSystem" type="auc:FoundationSystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="CriticalITSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="CriticalITSystem" type="auc:CriticalITSystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="PlugLoads" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="PlugLoad" type="auc:PlugElectricLoadType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ProcessLoads" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="ProcessLoad" type="auc:ProcessGasElectricLoadType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ConveyanceSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="ConveyanceSystem" type="auc:ConveyanceSystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="OnsiteStorageTransmissionGenerationSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="OnsiteStorageTransmissionGenerationSystem" type="auc:OnsiteStorageTransmissionGenerationSystemType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Pools" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="Pool" type="auc:PoolType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="WaterUses" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="WaterUse" type="auc:WaterUseType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AirInfiltrationSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="AirInfiltrationSystem" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Description of the infiltration characteristics for an opaque surface, fenestration unit, a thermal zone.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="AirInfiltrationNotes" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Details about the the assessment. This might include methods used, criteria, evidence, or basis of evaluation.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Tightness" type="auc:Tightness" minOccurs="0">
<xs:annotation>
<xs:documentation>Description of the infiltration characteristics for an opaque surface, fenestration unit, a thermal zone.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AirInfiltrationValue" minOccurs="0">
<xs:annotation>
<xs:documentation>The measured value from the Air Infiltration test.</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="AirInfiltrationValueUnits" minOccurs="0">
<xs:annotation>
<xs:documentation>Units associated with Air Infiltration Value.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="CFM25"/>
<xs:enumeration value="CFM50"/>
<xs:enumeration value="CFM75"/>
<xs:enumeration value="CFMnatural"/>
<xs:enumeration value="ACH50"/>
<xs:enumeration value="ACHnatural"/>
<xs:enumeration value="Effective Leakage Area"/>
<xs:enumeration value="Other"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="AirInfiltrationTest" minOccurs="0">
<xs:annotation>
<xs:documentation>Type of air infiltration test performed on the building.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Blower door"/>
<xs:enumeration value="Tracer gas"/>
<xs:enumeration value="Checklist"/>
<xs:enumeration value="Other"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element ref="auc:LinkedPremises" minOccurs="0"/>
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="ID" type="xs:ID" use="required"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="WaterInfiltrationSystems" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="WaterInfiltrationSystem" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Description of the infiltration characteristics for an opaque surface, fenestration unit, a thermal zone.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="WaterInfiltrationNotes" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Details about the the assessment. This might include methods used, criteria, evidence, or basis of evaluation.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LocationsOfExteriorWaterIntrusionDamages" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="LocationsOfExteriorWaterIntrusionDamage" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Location of observed moisture problems on the outside of the building.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Roof"/>
<xs:enumeration value="Interior ceiling"/>
<xs:enumeration value="Foundation"/>
<xs:enumeration value="Basement"/>
<xs:enumeration value="Crawlspace"/>
<xs:enumeration value="Walls"/>
<xs:enumeration value="Around windows"/>
<xs:enumeration value="Other"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="LocationsOfInteriorWaterIntrusionDamages" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="LocationsOfInteriorWaterIntrusionDamage" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Location of observed moisture problems on the inside of the building.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Kitchen"/>
<xs:enumeration value="Bathroom"/>
<xs:enumeration value="Basement"/>
<xs:enumeration value="Other"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element ref="auc:LinkedPremises" minOccurs="0"/>
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Schedules" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="Schedule" type="auc:ScheduleType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Measures" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="Measure" type="auc:MeasureType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Reports" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="Report" type="auc:ReportType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Contacts" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="Contact" type="auc:ContactType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Tenants" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="Tenant" type="auc:TenantType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AuditCycles" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="AuditCycle" type="auc:AuditCycleType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="ID" type="xs:ID" use="required"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="version" use="required">
<xs:annotation>
<xs:documentation>The versions are sorted by official release date (reverse order). Note that semantic versioning for BuildingSync was reset in 2016. v2.0.0-legacy is the last official release of the schema before the version reset and is available in the schema repository: https://github.com/BuildingSync/schema/releases/tag/v2.0.0-legacy. Since then, semantic versioning started at the v0.2.0 release and progresses as expected.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="2.0.0"/>
<xs:enumeration value="2.0"/>
<xs:enumeration value="2.1.0"/>
<xs:enumeration value="2.1"/>
<xs:enumeration value="2.2.0"/>
<xs:enumeration value="2.2"/>
<xs:enumeration value="2.3.0"/>
<xs:enumeration value="2.3"/>
<xs:enumeration value="2.4.0"/>
<xs:enumeration value="2.4"/>
<xs:enumeration value="2.5.0"/>
<xs:enumeration value="2.5"/>
<xs:enumeration value="2.6.0"/>
<xs:enumeration value="2.6"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:complexType name="SiteType">
<xs:sequence>
<xs:element ref="auc:PremisesIdentifiers" minOccurs="0"/>
<xs:element ref="auc:PremisesName" minOccurs="0"/>
<xs:element ref="auc:PremisesNotes" minOccurs="0"/>
<xs:element ref="auc:OccupancyClassification" minOccurs="0">
<xs:annotation>
<xs:documentation>Classification of main utilization of the premises by building occupants.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="auc:Address" minOccurs="0">
<xs:annotation>
<xs:documentation>Characterization of the address</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="auc:ClimateZoneType" minOccurs="0" maxOccurs="1"/>
<xs:choice>
<xs:element ref="auc:eGRIDRegionCode" minOccurs="0"/>
<xs:element ref="auc:eGRIDSubregionCodes" minOccurs="0" maxOccurs="1"/>
</xs:choice>
<xs:choice>
<xs:sequence>
<xs:element ref="auc:WeatherDataStationID" minOccurs="0"/>
<xs:element ref="auc:WeatherStationName" minOccurs="0"/>
<xs:element ref="auc:WeatherStationCategory" minOccurs="0"/>
</xs:sequence>
<xs:element ref="auc:WeatherStations" minOccurs="0"/>
</xs:choice>
<xs:element ref="auc:Longitude" minOccurs="0"/>
<xs:element ref="auc:Latitude" minOccurs="0"/>
<xs:element ref="auc:FloorAreas" minOccurs="0"/>
<xs:element ref="auc:Ownership" minOccurs="0"/>
<xs:element ref="auc:OwnershipStatus" minOccurs="0">
<xs:annotation>
<xs:documentation>Ownership status of the premises or equipment with respect to the contact.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="auc:PrimaryContactID" minOccurs="0"/>
<xs:element name="Buildings" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="Building" type="auc:BuildingType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A building is a single structure wholly or partially enclosed within exterior walls, or within exterior and abutment walls (party walls), and a roof, affording shelter to persons, animals, or property. A building can be two or more units held in the condominium form of ownership that are governed by the same board of managers.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="ID" type="xs:ID" use="required"/>
</xs:complexType>
<xs:complexType name="BuildingType">
<xs:sequence>
<xs:element ref="auc:PremisesName" minOccurs="0">
<xs:annotation>
<xs:documentation>Name identifying the premises. This could be the name of the complex, the building, section, or the space within a building, such as a classroom number.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="auc:PremisesNotes" minOccurs="0"/>
<xs:element ref="auc:PremisesIdentifiers" minOccurs="0"/>
<xs:element ref="auc:Address" minOccurs="0">
<xs:annotation>
<xs:documentation>Characterization of the address.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="auc:ClimateZoneType" minOccurs="0" maxOccurs="1"/>
<xs:choice>
<xs:element ref="auc:eGRIDRegionCode" minOccurs="0"/>
<xs:element ref="auc:eGRIDSubregionCodes" minOccurs="0" maxOccurs="1"/>
</xs:choice>
<xs:choice>
<xs:sequence>
<xs:element ref="auc:WeatherDataStationID" minOccurs="0"/>
<xs:element ref="auc:WeatherStationName" minOccurs="0"/>
<xs:element ref="auc:WeatherStationCategory" minOccurs="0"/>
</xs:sequence>
<xs:element ref="auc:WeatherStations" minOccurs="0"/>
</xs:choice>
<xs:element ref="auc:Longitude" minOccurs="0"/>
<xs:element ref="auc:Latitude" minOccurs="0"/>
<xs:element name="BuildingClassification" minOccurs="0">
<xs:annotation>
<xs:documentation>Specify the type of building.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Commercial"/>
<xs:enumeration value="Residential"/>
<xs:enumeration value="Mixed use commercial"/>
<xs:enumeration value="Other"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element ref="auc:OccupancyClassification" minOccurs="0">
<xs:annotation>
<xs:documentation>Classification main utilization of the premises by building occupants.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="auc:OccupancyLevels" minOccurs="0"/>
<xs:element ref="auc:TypicalOccupantUsages" minOccurs="0"/>
<xs:element ref="auc:SpatialUnits" minOccurs="0"/>
<xs:element ref="auc:Ownership" minOccurs="0"/>
<xs:element ref="auc:OwnershipStatus" minOccurs="0"/>
<xs:element ref="auc:PrimaryContactID" minOccurs="0"/>
<xs:element ref="auc:TenantIDs" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="MultiTenant" type="xs:boolean" minOccurs="0">
<xs:annotation>
<xs:documentation>True if the building is a multi-tenant building.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NAICSCode" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>North American Industry Classification System (NAICS) code.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="PubliclySubsidized" type="xs:boolean" minOccurs="0">
<xs:annotation>
<xs:documentation>Does the building include multi-family housing that receives or received public funding for construction or operations (this does not include Housing Choice Voucher Program Section 8 or similar vouchers received by individual tenants)?</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="FederalBuilding" minOccurs="0">
<xs:annotation>
<xs:documentation>If exists then the building is owned by the federal government.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Agency" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Federal agency, required to designate a building as a federal property in ENERGY STAR Portfolio Manager.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="DepartmentRegion" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Federal department/region, required to designate a building as a federal property in ENERGY STAR Portfolio Manager.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element ref="auc:PortfolioManager" minOccurs="0"/>
<xs:element name="NumberOfBusinesses" minOccurs="0">
<xs:annotation>
<xs:documentation>Number of separate business tenants within the premises.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:integer">
<xs:attribute ref="auc:Source"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element ref="auc:FloorsAboveGrade" minOccurs="0"/>
<xs:element ref="auc:FloorsBelowGrade" minOccurs="0"/>
<xs:element name="ConditionedFloorsAboveGrade" minOccurs="0">
<xs:annotation>
<xs:documentation>Nominal number of floors which are fully above ground and are conditioned.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:integer">
<xs:attribute ref="auc:Source"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="ConditionedFloorsBelowGrade" minOccurs="0">
<xs:annotation>
<xs:documentation>Nominal number of floors which are fully underground and are conditioned.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:integer">
<xs:attribute ref="auc:Source"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="UnconditionedFloorsAboveGrade" minOccurs="0">
<xs:annotation>
<xs:documentation>Nominal number of floors which are fully above ground and are unconditioned.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:integer">
<xs:attribute ref="auc:Source"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="UnconditionedFloorsBelowGrade" minOccurs="0">
<xs:annotation>
<xs:documentation>Nominal number of floors which are fully underground and are unconditioned.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:integer">
<xs:attribute ref="auc:Source"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element ref="auc:BuildingAutomationSystem" minOccurs="0"/>
<xs:element ref="auc:LightingAutomationSystem" minOccurs="0"/>
<xs:element name="HistoricalLandmark" type="xs:boolean" minOccurs="0">
<xs:annotation>
<xs:documentation>Does the facility have historical landmark status (e.g., is the facility listed in the National Register of Historic Places)?</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="auc:FloorAreas" minOccurs="0">
<xs:annotation>
<xs:documentation>List of various floor areas of the building.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AspectRatio" minOccurs="0">
<xs:annotation>
<xs:documentation>The ratio of width to length, of a premises.</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="Perimeter" minOccurs="0">
<xs:annotation>
<xs:documentation>Length of a line forming the boundary around the premises. (ft)</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:integer">
<xs:attribute ref="auc:Source"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="TotalExteriorAboveGradeWallArea" minOccurs="0">
<xs:annotation>
<xs:documentation>Above grade wall area exposed to the elements. (ft2)</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="TotalExteriorBelowGradeWallArea" minOccurs="0">
<xs:annotation>
<xs:documentation>Below grade wall area exposed to the ground. (ft2)</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="TotalCommonConditionedAboveGradeWallArea" minOccurs="0">
<xs:annotation>
<xs:documentation>Above grade demising wall area. (ft2)</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="auc:nonNegativeDecimal">
<xs:attribute ref="auc:Source"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="OverallWindowToWallRatio" minOccurs="0" type="auc:BoundedDecimalZeroToOneWithSourceAttribute">
<xs:annotation>
<xs:documentation>Overall window to wall ratio of the facility. (0-1) (fraction)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="OverallDoorToWallRatio" minOccurs="0" type="auc:BoundedDecimalZeroToOneWithSourceAttribute">
<xs:annotation>
<xs:documentation>Overall door to wall ratio of the facility. (0-1) (fraction)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="HeightDistribution" minOccurs="0">
<xs:annotation>
<xs:documentation>Uniformity of building height.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Multiple Heights"/>
<xs:enumeration value="Uniform Height"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="HorizontalSurroundings" minOccurs="0">
<xs:annotation>
<xs:documentation>Attachments to the outermost horizontal surfaces of the premises.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="No abutments"/>
<xs:enumeration value="Attached from Above"/>
<xs:enumeration value="Attached from Below"/>
<xs:enumeration value="Attached from Above and Below"/>
<xs:enumeration value="Unknown"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="VerticalSurroundings" minOccurs="0">
<xs:annotation>
<xs:documentation>Attachments to the outermost vertical surfaces of the premises. This can be used if the more detailed input for Surface Exposure is not known. Illustrations for the constrained list choices will be provided when the web site is developed.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Stand-alone"/>
<xs:enumeration value="Attached on one side"/>
<xs:enumeration value="Attached on two sides"/>
<xs:enumeration value="Attached on three sides"/>
<xs:enumeration value="Within a building"/>
<xs:enumeration value="Unknown"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Assessments" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="Assessment" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="AssessmentProgram" minOccurs="0">
<xs:annotation>
<xs:documentation>Program which issues energy labels, ratings, or sustainability certifications.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="ENERGY STAR"/>
<xs:enumeration value="ENERGY STAR Certified Homes"/>
<xs:enumeration value="LEED"/>
<xs:enumeration value="Home Energy Upgrade Certificate of Energy Efficiency Performance"/>
<xs:enumeration value="Home Energy Upgrade Certificate of Energy Efficiency Improvements"/>
<xs:enumeration value="Passive House"/>
<xs:enumeration value="Living Building Challenge"/>
<xs:enumeration value="Green Globes"/>
<xs:enumeration value="Challenge Home"/>
<xs:enumeration value="WaterSense"/>
<xs:enumeration value="Indoor airPLUS"/>
<xs:enumeration value="NGBS ICC 700"/>
<xs:enumeration value="CMP Green Value Score"/>
<xs:enumeration value="RESNET HERS"/>
<xs:enumeration value="Home Energy Score"/>
<xs:enumeration value="ASHRAE Building EQ"/>
<xs:enumeration value="Commercial Building Energy Asset Score"/>
<xs:enumeration value="Other"/>
<xs:enumeration value="Unknown"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="AssessmentLevel" minOccurs="0">
<xs:annotation>
<xs:documentation>Value from assessment program, such as LEED "Platinum".</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Bronze"/>
<xs:enumeration value="Silver"/>
<xs:enumeration value="Gold"/>
<xs:enumeration value="Emerald"/>
<xs:enumeration value="Certified"/>
<xs:enumeration value="Platinum"/>
<xs:enumeration value="One Star"/>
<xs:enumeration value="Two Star"/>
<xs:enumeration value="Three Star"/>
<xs:enumeration value="Four Star"/>
<xs:enumeration value="Other"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="AssessmentValue" type="xs:decimal" minOccurs="0">
<xs:annotation>
<xs:documentation>Value from certifications that produce a numeric metric, such as ENERGY STAR Score, Home Energy Rating System (HERS) Index Score, Home Energy Score.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AssessmentYear" type="xs:gYear" minOccurs="0">
<xs:annotation>
<xs:documentation>Year the assessment qualifications for recognition were documented. (CCYY)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AssessmentVersion" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Version of the assessment documentation, such as "2.0".</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element ref="auc:PrincipalHVACSystemType" minOccurs="0"/>
<xs:element ref="auc:YearOfConstruction" minOccurs="0"/>
<xs:element ref="auc:PrincipalLightingSystemType" minOccurs="0"/>
<xs:element name="YearOccupied" type="xs:gYear" minOccurs="0">
<xs:annotation>
<xs:documentation>Year in which the premises was first occupied. (CCYY)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="YearOfLastEnergyAudit" type="xs:gYear" minOccurs="0">
<xs:annotation>
<xs:documentation>Year of the most recent energy audit for this building. (CCYY)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RetrocommissioningDate" type="xs:date" minOccurs="0">
<xs:annotation>
<xs:documentation>Date retro-commissioning or recommissioning was last conducted. (CCYY-MM-DD)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="YearOfLatestRetrofit" type="xs:gYear" minOccurs="0">
<xs:annotation>
<xs:documentation>Year an energy retrofit of the building was last completed. (CCYY)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="YearOfLastMajorRemodel" type="xs:gYear" minOccurs="0">
<xs:annotation>
<xs:documentation>Year of the most recent major remodel. For a remodel to be considered major, the work undertaken must have required a permit from the building department, or an inspection by a governing authority. (CCYY)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="PercentOccupiedByOwner" minOccurs="0">
<xs:annotation>
<xs:documentation>The percentage of gross floor area that is occupied by the owner of the premises and affiliates. (0-100) (%)</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="PercentLeasedByOwner" minOccurs="0">
<xs:annotation>
<xs:documentation>The percentage of gross floor area that is leased by the owner of the premises and affiliates. (0-100) (%)</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="NumberOfFacilitiesOnSite" minOccurs="0">
<xs:annotation>
<xs:documentation>Number of facilities on the site.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:integer">
<xs:attribute ref="auc:Source"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="OperatorType" minOccurs="0">
<xs:annotation>
<xs:documentation>Entity responsible for the operation of the facility.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Owner"/>
<xs:enumeration value="Occupant"/>
<xs:enumeration value="Tenant"/>
<xs:enumeration value="Landlord"/>
<xs:enumeration value="Other"/>
<xs:enumeration value="Unknown"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Sections" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="Section" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Physical section of building for which features are defined. May be one or many.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="auc:PremisesName" minOccurs="0"/>
<xs:element name="SectionType" minOccurs="0">
<xs:annotation>
<xs:documentation>The type of section such as Whole building, Space function data, or other types. * Whole building - describes the whole building, Space function - describes a space function (refer to SPC 211 Standard for Commercial Building Energy Audits), Component - describes a subspace of a primary premises such as HVAC zone, retails shops in a mall, etc., Tenant - describes a section for a tenant, Virtual - describes a section loosely with potentially overlap with other sections and section types, Other - not well-described by other types.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Whole building"/>
<xs:enumeration value="Space function"/>
<xs:enumeration value="Component"/>
<xs:enumeration value="Tenant"/>
<xs:enumeration value="Virtual"/>
<xs:enumeration value="Other"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element ref="auc:PremisesNotes" minOccurs="0"/>
<xs:element ref="auc:PremisesIdentifiers" minOccurs="0"/>
<xs:element ref="auc:OccupancyClassification" minOccurs="0"/>
<xs:element ref="auc:OriginalOccupancyClassification" minOccurs="0"/>
<xs:element ref="auc:OccupancyLevels" minOccurs="0"/>
<xs:element ref="auc:TypicalOccupantUsages" minOccurs="0"/>
<xs:element ref="auc:SpatialUnits" minOccurs="0"/>
<xs:element ref="auc:PrimaryContactID" minOccurs="0"/>
<xs:element ref="auc:TenantIDs" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="auc:PrincipalHVACSystemType" minOccurs="0"/>
<xs:element ref="auc:PrincipalLightingSystemType" minOccurs="0"/>
<xs:element ref="auc:YearOfConstruction" minOccurs="0"/>
<xs:element name="FootprintShape" minOccurs="0">
<xs:annotation>
<xs:documentation>General shape of the section of the building as a footprint defined in the BuildingSync Geometry Reference Sheet.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Rectangular"/>
<xs:enumeration value="L-Shape"/>
<xs:enumeration value="U-Shape"/>
<xs:enumeration value="H-Shape"/>
<xs:enumeration value="T-Shape"/>
<xs:enumeration value="O-Shape"/>
<xs:enumeration value="Other"/>
<xs:enumeration value="Unknown"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="NumberOfSides" minOccurs="0">
<xs:annotation>
<xs:documentation>Number of sides of the section of the building. Inclusion of this element is recommended when auc:FootprintShape is Other.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>