@golemio/energetics 1.0.13 → 1.0.14-dev.740182146
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/integration-engine/helpers/index.d.ts +0 -1
- package/dist/integration-engine/helpers/index.js +0 -1
- package/dist/integration-engine/helpers/index.js.map +1 -1
- package/dist/integration-engine/index.d.ts +3 -2
- package/dist/integration-engine/index.js +4 -2
- package/dist/integration-engine/index.js.map +1 -1
- package/dist/integration-engine/queueDefinitions.d.ts +3 -0
- package/dist/integration-engine/queueDefinitions.js +4 -11
- package/dist/integration-engine/queueDefinitions.js.map +1 -1
- package/dist/integration-engine/transformations/index.d.ts +0 -3
- package/dist/integration-engine/transformations/index.js +0 -3
- package/dist/integration-engine/transformations/index.js.map +1 -1
- package/dist/integration-engine/workers/index.d.ts +0 -1
- package/dist/integration-engine/workers/index.js +0 -1
- package/dist/integration-engine/workers/index.js.map +1 -1
- package/dist/integration-engine/workers/oict-energetika/OictEnergetikaWorker.d.ts +5 -0
- package/dist/integration-engine/workers/oict-energetika/OictEnergetikaWorker.js +21 -0
- package/dist/integration-engine/workers/oict-energetika/OictEnergetikaWorker.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/data-access/BuildingsRepository.d.ts +4 -0
- package/dist/integration-engine/workers/oict-energetika/data-access/BuildingsRepository.js +19 -0
- package/dist/integration-engine/workers/oict-energetika/data-access/BuildingsRepository.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/data-access/ConsumptionRepository.d.ts +6 -0
- package/dist/integration-engine/workers/oict-energetika/data-access/ConsumptionRepository.js +37 -0
- package/dist/integration-engine/workers/oict-energetika/data-access/ConsumptionRepository.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/data-access/DevicesRepository.d.ts +4 -0
- package/dist/integration-engine/workers/oict-energetika/data-access/DevicesRepository.js +19 -0
- package/dist/integration-engine/workers/oict-energetika/data-access/DevicesRepository.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/datasources/OictDataSourceFactory.d.ts +10 -0
- package/dist/integration-engine/workers/oict-energetika/datasources/OictDataSourceFactory.js +23 -0
- package/dist/integration-engine/workers/oict-energetika/datasources/OictDataSourceFactory.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/datasources/helpers/OictApiHelper.d.ts +12 -0
- package/dist/integration-engine/workers/oict-energetika/datasources/helpers/OictApiHelper.js +48 -0
- package/dist/integration-engine/workers/oict-energetika/datasources/helpers/OictApiHelper.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/datasources/helpers/index.d.ts +1 -0
- package/dist/integration-engine/workers/oict-energetika/datasources/helpers/index.js +18 -0
- package/dist/integration-engine/workers/oict-energetika/datasources/helpers/index.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/interfaces/IFetchDataInput.d.ts +3 -0
- package/dist/integration-engine/workers/oict-energetika/interfaces/IFetchDataInput.js +3 -0
- package/dist/integration-engine/workers/oict-energetika/interfaces/IFetchDataInput.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/schema/FetchDataSchema.d.ts +4 -0
- package/dist/integration-engine/workers/oict-energetika/schema/FetchDataSchema.js +22 -0
- package/dist/integration-engine/workers/oict-energetika/schema/FetchDataSchema.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchBuildingsTask.d.ts +9 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchBuildingsTask.js +44 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchBuildingsTask.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchConsumptionTask.d.ts +13 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchConsumptionTask.js +66 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchConsumptionTask.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchDataTask.d.ts +10 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchDataTask.js +32 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchDataTask.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchDevicesTask.d.ts +9 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchDevicesTask.js +44 -0
- package/dist/integration-engine/workers/oict-energetika/tasks/FetchDevicesTask.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/transformations/BuildingsTransformation.d.ts +7 -0
- package/dist/integration-engine/{transformations/EnesaEnergyBuildingsTransformation.js → workers/oict-energetika/transformations/BuildingsTransformation.js} +131 -133
- package/dist/integration-engine/workers/oict-energetika/transformations/BuildingsTransformation.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/transformations/ConsumptionTransformation.d.ts +7 -0
- package/dist/integration-engine/{transformations/EnesaEnergyConsumptionTransformation.js → workers/oict-energetika/transformations/ConsumptionTransformation.js} +12 -16
- package/dist/integration-engine/workers/oict-energetika/transformations/ConsumptionTransformation.js.map +1 -0
- package/dist/integration-engine/workers/oict-energetika/transformations/DevicesTransformation.d.ts +7 -0
- package/dist/integration-engine/{transformations/EnesaEnergyDevicesTransformation.js → workers/oict-energetika/transformations/DevicesTransformation.js} +10 -12
- package/dist/integration-engine/workers/oict-energetika/transformations/DevicesTransformation.js.map +1 -0
- package/dist/schema-definitions/datasources/OictBuildingsJsonSchema.d.ts +3 -0
- package/dist/schema-definitions/datasources/OictBuildingsJsonSchema.js +356 -0
- package/dist/schema-definitions/datasources/OictBuildingsJsonSchema.js.map +1 -0
- package/dist/schema-definitions/datasources/OictConsumptionJsonSchema.d.ts +3 -0
- package/dist/schema-definitions/datasources/OictConsumptionJsonSchema.js +19 -0
- package/dist/schema-definitions/datasources/OictConsumptionJsonSchema.js.map +1 -0
- package/dist/schema-definitions/datasources/OictDevicesJsonSchema.d.ts +3 -0
- package/dist/schema-definitions/datasources/OictDevicesJsonSchema.js +42 -0
- package/dist/schema-definitions/datasources/OictDevicesJsonSchema.js.map +1 -0
- package/dist/schema-definitions/datasources/index.d.ts +3 -0
- package/dist/schema-definitions/datasources/index.js +20 -0
- package/dist/schema-definitions/datasources/index.js.map +1 -0
- package/dist/schema-definitions/datasources/interfaces/IOictBuildingsInput.d.ts +170 -0
- package/dist/schema-definitions/datasources/interfaces/IOictBuildingsInput.js +3 -0
- package/dist/schema-definitions/datasources/interfaces/IOictBuildingsInput.js.map +1 -0
- package/dist/schema-definitions/datasources/interfaces/IOictConsumptionInput.d.ts +8 -0
- package/dist/schema-definitions/datasources/interfaces/IOictConsumptionInput.js +3 -0
- package/dist/schema-definitions/datasources/interfaces/IOictConsumptionInput.js.map +1 -0
- package/dist/schema-definitions/datasources/interfaces/IOictDevicesInput.d.ts +16 -0
- package/dist/schema-definitions/datasources/interfaces/IOictDevicesInput.js +3 -0
- package/dist/schema-definitions/datasources/interfaces/IOictDevicesInput.js.map +1 -0
- package/dist/schema-definitions/datasources/interfaces/index.d.ts +3 -0
- package/dist/schema-definitions/datasources/interfaces/index.js +20 -0
- package/dist/schema-definitions/datasources/interfaces/index.js.map +1 -0
- package/dist/schema-definitions/index.d.ts +2 -6
- package/dist/schema-definitions/index.js +1 -6
- package/dist/schema-definitions/index.js.map +1 -1
- package/dist/schema-definitions/models/BuildingsModel.d.ts +131 -0
- package/dist/schema-definitions/models/BuildingsModel.js +393 -0
- package/dist/schema-definitions/models/BuildingsModel.js.map +1 -0
- package/dist/schema-definitions/models/ConsumptionModel.d.ts +14 -0
- package/dist/schema-definitions/models/ConsumptionModel.js +50 -0
- package/dist/schema-definitions/models/ConsumptionModel.js.map +1 -0
- package/dist/schema-definitions/models/DevicesModel.d.ts +22 -0
- package/dist/schema-definitions/models/DevicesModel.js +66 -0
- package/dist/schema-definitions/models/DevicesModel.js.map +1 -0
- package/dist/schema-definitions/models/index.d.ts +3 -0
- package/dist/schema-definitions/models/index.js +20 -0
- package/dist/schema-definitions/models/index.js.map +1 -0
- package/dist/schema-definitions/models/interfaces/IBuildingsModel.d.ts +125 -0
- package/dist/schema-definitions/models/interfaces/IBuildingsModel.js +3 -0
- package/dist/schema-definitions/models/interfaces/IBuildingsModel.js.map +1 -0
- package/dist/schema-definitions/models/interfaces/IConsumptionModel.d.ts +8 -0
- package/dist/schema-definitions/models/interfaces/IConsumptionModel.js +3 -0
- package/dist/schema-definitions/models/interfaces/IConsumptionModel.js.map +1 -0
- package/dist/schema-definitions/models/interfaces/IDevicesModel.d.ts +16 -0
- package/dist/schema-definitions/models/interfaces/IDevicesModel.js +3 -0
- package/dist/schema-definitions/models/interfaces/IDevicesModel.js.map +1 -0
- package/dist/schema-definitions/models/interfaces/index.d.ts +3 -0
- package/dist/schema-definitions/models/interfaces/index.js +20 -0
- package/dist/schema-definitions/models/interfaces/index.js.map +1 -0
- package/dist/schema-definitions/providers/index.d.ts +0 -1
- package/dist/schema-definitions/providers/index.js +0 -1
- package/dist/schema-definitions/providers/index.js.map +1 -1
- package/package.json +6 -6
- package/dist/integration-engine/helpers/EnesaApiHelper.d.ts +0 -17
- package/dist/integration-engine/helpers/EnesaApiHelper.js +0 -23
- package/dist/integration-engine/helpers/EnesaApiHelper.js.map +0 -1
- package/dist/integration-engine/transformations/EnesaEnergyBuildingsTransformation.d.ts +0 -8
- package/dist/integration-engine/transformations/EnesaEnergyBuildingsTransformation.js.map +0 -1
- package/dist/integration-engine/transformations/EnesaEnergyConsumptionTransformation.d.ts +0 -8
- package/dist/integration-engine/transformations/EnesaEnergyConsumptionTransformation.js.map +0 -1
- package/dist/integration-engine/transformations/EnesaEnergyDevicesTransformation.d.ts +0 -8
- package/dist/integration-engine/transformations/EnesaEnergyDevicesTransformation.js.map +0 -1
- package/dist/integration-engine/workers/EnergeticsEnesaWorker.d.ts +0 -27
- package/dist/integration-engine/workers/EnergeticsEnesaWorker.js +0 -142
- package/dist/integration-engine/workers/EnergeticsEnesaWorker.js.map +0 -1
- package/dist/schema-definitions/providers/EnergeticsEnesa.d.ts +0 -1087
- package/dist/schema-definitions/providers/EnergeticsEnesa.js +0 -35
- package/dist/schema-definitions/providers/EnergeticsEnesa.js.map +0 -1
- package/dist/schema-definitions/providers/EnergeticsEnesaDatasourceSchemas.d.ts +0 -592
- package/dist/schema-definitions/providers/EnergeticsEnesaDatasourceSchemas.js +0 -685
- package/dist/schema-definitions/providers/EnergeticsEnesaDatasourceSchemas.js.map +0 -1
- package/dist/schema-definitions/providers/EnergeticsEnesaOutputSchemas.d.ts +0 -463
- package/dist/schema-definitions/providers/EnergeticsEnesaOutputSchemas.js +0 -608
- package/dist/schema-definitions/providers/EnergeticsEnesaOutputSchemas.js.map +0 -1
- package/dist/schema-definitions/providers/EnergeticsEnesaSDMA.d.ts +0 -5
- package/dist/schema-definitions/providers/EnergeticsEnesaSDMA.js +0 -202
- package/dist/schema-definitions/providers/EnergeticsEnesaSDMA.js.map +0 -1
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"EnergeticsEnesaDatasourceSchemas.js","sourceRoot":"","sources":["../../../src/schema-definitions/providers/EnergeticsEnesaDatasourceSchemas.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,463 +0,0 @@
|
|
|
1
|
-
declare const outputEnesaEnergyBuildingsJsonSchema: {
|
|
2
|
-
type: string;
|
|
3
|
-
items: {
|
|
4
|
-
type: string;
|
|
5
|
-
properties: {
|
|
6
|
-
id: {
|
|
7
|
-
type: string;
|
|
8
|
-
};
|
|
9
|
-
description: {
|
|
10
|
-
type: string;
|
|
11
|
-
};
|
|
12
|
-
building_address_code: {
|
|
13
|
-
type: string;
|
|
14
|
-
};
|
|
15
|
-
building_label: {
|
|
16
|
-
type: string;
|
|
17
|
-
};
|
|
18
|
-
current_note: {
|
|
19
|
-
type: string;
|
|
20
|
-
};
|
|
21
|
-
main_use: {
|
|
22
|
-
type: string;
|
|
23
|
-
};
|
|
24
|
-
secondary_use: {
|
|
25
|
-
type: string;
|
|
26
|
-
};
|
|
27
|
-
year_of_construction: {
|
|
28
|
-
type: string;
|
|
29
|
-
};
|
|
30
|
-
method_of_protection: {
|
|
31
|
-
type: string;
|
|
32
|
-
};
|
|
33
|
-
built_up_area: {
|
|
34
|
-
type: string;
|
|
35
|
-
};
|
|
36
|
-
heated_bulding_volume: {
|
|
37
|
-
type: string;
|
|
38
|
-
};
|
|
39
|
-
students_count: {
|
|
40
|
-
type: string;
|
|
41
|
-
};
|
|
42
|
-
employees_count: {
|
|
43
|
-
type: string;
|
|
44
|
-
};
|
|
45
|
-
classrooms_count: {
|
|
46
|
-
type: string;
|
|
47
|
-
};
|
|
48
|
-
beds_count: {
|
|
49
|
-
type: string;
|
|
50
|
-
};
|
|
51
|
-
eno_id: {
|
|
52
|
-
type: string;
|
|
53
|
-
};
|
|
54
|
-
csu_code: {
|
|
55
|
-
type: string;
|
|
56
|
-
};
|
|
57
|
-
ku_code: {
|
|
58
|
-
type: string;
|
|
59
|
-
};
|
|
60
|
-
allotment_number: {
|
|
61
|
-
type: string;
|
|
62
|
-
};
|
|
63
|
-
registration_unit: {
|
|
64
|
-
type: string;
|
|
65
|
-
};
|
|
66
|
-
gas_consumption_normatives: {
|
|
67
|
-
type: string;
|
|
68
|
-
};
|
|
69
|
-
heat_consumption_normatives: {
|
|
70
|
-
type: string;
|
|
71
|
-
};
|
|
72
|
-
water_consumption_normatives: {
|
|
73
|
-
type: string;
|
|
74
|
-
};
|
|
75
|
-
electricity_consumption_normatives_per_person: {
|
|
76
|
-
type: string;
|
|
77
|
-
};
|
|
78
|
-
electricity_consumption_normatives: {
|
|
79
|
-
type: string;
|
|
80
|
-
};
|
|
81
|
-
energetic_management: {
|
|
82
|
-
type: string;
|
|
83
|
-
};
|
|
84
|
-
opening_hours: {
|
|
85
|
-
type: string;
|
|
86
|
-
};
|
|
87
|
-
weekend_opening_hours: {
|
|
88
|
-
type: string;
|
|
89
|
-
};
|
|
90
|
-
latitude: {
|
|
91
|
-
type: string;
|
|
92
|
-
};
|
|
93
|
-
longitude: {
|
|
94
|
-
type: string;
|
|
95
|
-
};
|
|
96
|
-
address_street: {
|
|
97
|
-
type: string;
|
|
98
|
-
};
|
|
99
|
-
address_house_number: {
|
|
100
|
-
type: string;
|
|
101
|
-
};
|
|
102
|
-
address_city: {
|
|
103
|
-
type: string;
|
|
104
|
-
};
|
|
105
|
-
address_country: {
|
|
106
|
-
type: string;
|
|
107
|
-
};
|
|
108
|
-
address_mail: {
|
|
109
|
-
type: string;
|
|
110
|
-
};
|
|
111
|
-
address_phone: {
|
|
112
|
-
type: string;
|
|
113
|
-
};
|
|
114
|
-
address_web_address: {
|
|
115
|
-
type: string;
|
|
116
|
-
};
|
|
117
|
-
penb_penbnumber: {
|
|
118
|
-
type: string;
|
|
119
|
-
};
|
|
120
|
-
penb_issue_date: {
|
|
121
|
-
type: string;
|
|
122
|
-
};
|
|
123
|
-
penb_total_building_envelope_area: {
|
|
124
|
-
type: string;
|
|
125
|
-
};
|
|
126
|
-
penb_volume_factor_of_avshape: {
|
|
127
|
-
type: string;
|
|
128
|
-
};
|
|
129
|
-
penb_total_energy_reference_area: {
|
|
130
|
-
type: string;
|
|
131
|
-
};
|
|
132
|
-
penb_total_provided_energy: {
|
|
133
|
-
type: string;
|
|
134
|
-
};
|
|
135
|
-
penb_total_provided_energy_category: {
|
|
136
|
-
type: string;
|
|
137
|
-
};
|
|
138
|
-
penb_primary_non_renewable_energy: {
|
|
139
|
-
type: string;
|
|
140
|
-
};
|
|
141
|
-
penb_primary_non_renewable_energy_category: {
|
|
142
|
-
type: string;
|
|
143
|
-
};
|
|
144
|
-
penb_building_envelope: {
|
|
145
|
-
type: string;
|
|
146
|
-
};
|
|
147
|
-
penb_building_envelope_category: {
|
|
148
|
-
type: string;
|
|
149
|
-
};
|
|
150
|
-
penb_heating: {
|
|
151
|
-
type: string;
|
|
152
|
-
};
|
|
153
|
-
penb_heating_category: {
|
|
154
|
-
type: string;
|
|
155
|
-
};
|
|
156
|
-
penb_cooling: {
|
|
157
|
-
type: string;
|
|
158
|
-
};
|
|
159
|
-
penb_cooling_category: {
|
|
160
|
-
type: string;
|
|
161
|
-
};
|
|
162
|
-
penb_ventilation: {
|
|
163
|
-
type: string;
|
|
164
|
-
};
|
|
165
|
-
penb_ventilation_category: {
|
|
166
|
-
type: string;
|
|
167
|
-
};
|
|
168
|
-
penb_humidity_adjustment: {
|
|
169
|
-
type: string;
|
|
170
|
-
};
|
|
171
|
-
penb_humidity_adjustment_category: {
|
|
172
|
-
type: string;
|
|
173
|
-
};
|
|
174
|
-
penb_warm_water: {
|
|
175
|
-
type: string;
|
|
176
|
-
};
|
|
177
|
-
penb_warm_water_category: {
|
|
178
|
-
type: string;
|
|
179
|
-
};
|
|
180
|
-
penb_lighting: {
|
|
181
|
-
type: string;
|
|
182
|
-
};
|
|
183
|
-
penb_lighting_category: {
|
|
184
|
-
type: string;
|
|
185
|
-
};
|
|
186
|
-
energy_audits_energy_audit: {
|
|
187
|
-
type: string;
|
|
188
|
-
};
|
|
189
|
-
energy_audits_earegistration_number: {
|
|
190
|
-
type: string;
|
|
191
|
-
};
|
|
192
|
-
energy_audits_created_at: {
|
|
193
|
-
type: string;
|
|
194
|
-
};
|
|
195
|
-
building_envelope_side_wall_prevailing_construction: {
|
|
196
|
-
type: string;
|
|
197
|
-
};
|
|
198
|
-
building_envelope_side_wall_area: {
|
|
199
|
-
type: string;
|
|
200
|
-
};
|
|
201
|
-
building_envelope_side_wall_heat_insulation: {
|
|
202
|
-
type: string;
|
|
203
|
-
};
|
|
204
|
-
building_envelope_side_wall_year_of_adjustment: {
|
|
205
|
-
type: string;
|
|
206
|
-
};
|
|
207
|
-
building_envelope_side_wall_technical_condition: {
|
|
208
|
-
type: string;
|
|
209
|
-
};
|
|
210
|
-
building_envelope_filling_of_hole_construction: {
|
|
211
|
-
type: string;
|
|
212
|
-
};
|
|
213
|
-
building_envelope_filling_of_hole_area: {
|
|
214
|
-
type: string;
|
|
215
|
-
};
|
|
216
|
-
building_envelope_filling_of_hole_year_of_adjustment: {
|
|
217
|
-
type: string;
|
|
218
|
-
};
|
|
219
|
-
building_envelope_filling_of_hole_technical_condition: {
|
|
220
|
-
type: string;
|
|
221
|
-
};
|
|
222
|
-
building_envelope_roof_construction: {
|
|
223
|
-
type: string;
|
|
224
|
-
};
|
|
225
|
-
building_envelope_roof_area: {
|
|
226
|
-
type: string;
|
|
227
|
-
};
|
|
228
|
-
building_envelope_roof_thermal_insulation: {
|
|
229
|
-
type: string;
|
|
230
|
-
};
|
|
231
|
-
building_envelope_roof_year_of_adjustment: {
|
|
232
|
-
type: string;
|
|
233
|
-
};
|
|
234
|
-
building_envelope_roof_technical_condition: {
|
|
235
|
-
type: string;
|
|
236
|
-
};
|
|
237
|
-
building_envelope_floor_of_the_lowest_heated_floor_construction: {
|
|
238
|
-
type: string;
|
|
239
|
-
};
|
|
240
|
-
building_envelope_floor_of_the_lowest_heated_floor_area: {
|
|
241
|
-
type: string;
|
|
242
|
-
};
|
|
243
|
-
floor_of_the_lowest_heated_floor_thermal_insulation: {
|
|
244
|
-
type: string;
|
|
245
|
-
};
|
|
246
|
-
building_envelope_floor_of_the_lowest_heated_floor_year_of_adjustment: {
|
|
247
|
-
type: string;
|
|
248
|
-
};
|
|
249
|
-
floor_of_the_lowest_heated_floor_technical_condition: {
|
|
250
|
-
type: string;
|
|
251
|
-
};
|
|
252
|
-
fuel_and_energy_coal: {
|
|
253
|
-
type: string;
|
|
254
|
-
};
|
|
255
|
-
fuel_and_energy_gas: {
|
|
256
|
-
type: string;
|
|
257
|
-
};
|
|
258
|
-
fuel_and_energy_electricity: {
|
|
259
|
-
type: string;
|
|
260
|
-
};
|
|
261
|
-
fuel_and_energy_czt: {
|
|
262
|
-
type: string;
|
|
263
|
-
};
|
|
264
|
-
fuel_and_energy_oze: {
|
|
265
|
-
type: string;
|
|
266
|
-
};
|
|
267
|
-
fuel_and_energy_other: {
|
|
268
|
-
type: string;
|
|
269
|
-
};
|
|
270
|
-
technical_equipment_heating_main_source_of_heat: {
|
|
271
|
-
type: string;
|
|
272
|
-
};
|
|
273
|
-
technical_equipment_heating_heat_percentage: {
|
|
274
|
-
type: string;
|
|
275
|
-
};
|
|
276
|
-
technical_equipment_heating_secondary_source_of_heat: {
|
|
277
|
-
type: string;
|
|
278
|
-
};
|
|
279
|
-
technical_equipment_heating_heating_system: {
|
|
280
|
-
type: string;
|
|
281
|
-
};
|
|
282
|
-
technical_equipment_heating_year: {
|
|
283
|
-
type: string;
|
|
284
|
-
};
|
|
285
|
-
technical_equipment_heating_technical_condition: {
|
|
286
|
-
type: string;
|
|
287
|
-
};
|
|
288
|
-
technical_equipment_cooling_cooling_system: {
|
|
289
|
-
type: string;
|
|
290
|
-
};
|
|
291
|
-
technical_equipment_cooling_cooling_area_percentage: {
|
|
292
|
-
type: string;
|
|
293
|
-
};
|
|
294
|
-
technical_equipment_cooling_year: {
|
|
295
|
-
type: string;
|
|
296
|
-
};
|
|
297
|
-
technical_equipment_cooling_technical_condition: {
|
|
298
|
-
type: string;
|
|
299
|
-
};
|
|
300
|
-
technical_equipment_ventilation_ventilation: {
|
|
301
|
-
type: string;
|
|
302
|
-
};
|
|
303
|
-
technical_equipment_ventilation_year: {
|
|
304
|
-
type: string;
|
|
305
|
-
};
|
|
306
|
-
technical_equipment_ventilation_technical_condition: {
|
|
307
|
-
type: string;
|
|
308
|
-
};
|
|
309
|
-
technical_equipment_humidity_adjustment_humidity_adjustment: {
|
|
310
|
-
type: string;
|
|
311
|
-
};
|
|
312
|
-
technical_equipment_humidity_adjustment_year: {
|
|
313
|
-
type: string;
|
|
314
|
-
};
|
|
315
|
-
technical_equipment_humidity_adjustment_technical_condition: {
|
|
316
|
-
type: string;
|
|
317
|
-
};
|
|
318
|
-
technical_equipment_hot_water_predominant_way_of_heating_tv: {
|
|
319
|
-
type: string;
|
|
320
|
-
};
|
|
321
|
-
technical_equipment_hot_water_hot_water_source: {
|
|
322
|
-
type: string;
|
|
323
|
-
};
|
|
324
|
-
technical_equipment_hot_water_year: {
|
|
325
|
-
type: string;
|
|
326
|
-
};
|
|
327
|
-
technical_equipment_hot_water_technical_condition: {
|
|
328
|
-
type: string;
|
|
329
|
-
};
|
|
330
|
-
technical_equipment_lighting_lighting: {
|
|
331
|
-
type: string;
|
|
332
|
-
};
|
|
333
|
-
technical_equipment_lighting_year: {
|
|
334
|
-
type: string;
|
|
335
|
-
};
|
|
336
|
-
technical_equipment_lighting_technical_condition: {
|
|
337
|
-
type: string;
|
|
338
|
-
};
|
|
339
|
-
technical_equipment_lighting_other_technological_elements: {
|
|
340
|
-
type: string;
|
|
341
|
-
};
|
|
342
|
-
technical_equipment_lighting_measurement_method: {
|
|
343
|
-
type: string;
|
|
344
|
-
};
|
|
345
|
-
oze_energy_production_solar_energy_photovoltaic: {
|
|
346
|
-
type: string;
|
|
347
|
-
};
|
|
348
|
-
oze_energy_production_solar_energy_photothermal: {
|
|
349
|
-
type: string;
|
|
350
|
-
};
|
|
351
|
-
oze_energy_production_integrated_turbines_wind_energy: {
|
|
352
|
-
type: string;
|
|
353
|
-
};
|
|
354
|
-
oze_energy_production_heat_pump: {
|
|
355
|
-
type: string;
|
|
356
|
-
};
|
|
357
|
-
waste_and_emissions_solid_waste_production: {
|
|
358
|
-
type: string;
|
|
359
|
-
};
|
|
360
|
-
waste_and_emissions_tied_co2_emissions: {
|
|
361
|
-
type: string;
|
|
362
|
-
};
|
|
363
|
-
waste_and_emissions_sox_emissions: {
|
|
364
|
-
type: string;
|
|
365
|
-
};
|
|
366
|
-
waste_and_emissions_operating_co_2emissions: {
|
|
367
|
-
type: string;
|
|
368
|
-
};
|
|
369
|
-
link: {
|
|
370
|
-
type: string;
|
|
371
|
-
};
|
|
372
|
-
};
|
|
373
|
-
required: readonly ["id", "building_name", "description", "building_address_code", "building_label", "current_note", "main_use", "secondary_use", "year_of_construction", "method_of_protection", "built_up_area", "heated_bulding_volume", "students_count", "employees_count", "classrooms_count", "beds_count", "eno_id", "csu_code", "ku_code", "allotment_number", "registration_unit", "gas_consumption_normatives", "heat_consumption_normatives", "water_consumption_normatives", "electricity_consumption_normatives_per_person", "electricity_consumption_normatives", "energetic_management", "opening_hours", "weekend_opening_hours", "latitude", "longitude", "address_street", "address_house_number", "address_city", "address_country", "address_mail", "address_phone", "address_web_address", "penb_penbnumber", "penb_issue_date", "penb_total_building_envelope_area", "penb_volume_factor_of_avshape", "penb_total_energy_reference_area", "penb_total_provided_energy", "penb_total_provided_energy_category", "penb_primary_non_renewable_energy", "penb_primary_non_renewable_energy_category", "penb_building_envelope", "penb_building_envelope_category", "penb_heating", "penb_heating_category", "penb_cooling", "penb_cooling_category", "penb_ventilation", "penb_ventilation_category", "penb_humidity_adjustment", "penb_humidity_adjustment_category", "penb_warm_water", "penb_warm_water_category", "penb_lighting", "penb_lighting_category", "energy_audits_energy_audit", "energy_audits_earegistration_number", "energy_audits_created_at", "building_envelope_side_wall_prevailing_construction", "building_envelope_side_wall_area", "building_envelope_side_wall_heat_insulation", "building_envelope_side_wall_year_of_adjustment", "building_envelope_side_wall_technical_condition", "building_envelope_filling_of_hole_construction", "building_envelope_filling_of_hole_area", "building_envelope_filling_of_hole_year_of_adjustment", "building_envelope_filling_of_hole_technical_condition", "building_envelope_roof_construction", "building_envelope_roof_area", "building_envelope_roof_thermal_insulation", "building_envelope_roof_year_of_adjustment", "building_envelope_roof_technical_condition", "building_envelope_floor_of_the_lowest_heated_floor_construction", "building_envelope_floor_of_the_lowest_heated_floor_area", "floor_of_the_lowest_heated_floor_thermal_insulation", "building_envelope_floor_of_the_lowest_heated_floor_year_of_adjustment", "floor_of_the_lowest_heated_floor_technical_condition", "fuel_and_energy_coal", "fuel_and_energy_gas", "fuel_and_energy_electricity", "fuel_and_energy_czt", "fuel_and_energy_oze", "fuel_and_energy_other", "technical_equipment_heating_main_source_of_heat", "technical_equipment_heating_heat_percentage", "technical_equipment_heating_secondary_source_of_heat", "technical_equipment_heating_heating_system", "technical_equipment_heating_year", "technical_equipment_heating_technical_condition", "technical_equipment_cooling_cooling_system", "technical_equipment_cooling_cooling_area_percentage", "technical_equipment_cooling_year", "technical_equipment_cooling_technical_condition", "technical_equipment_ventilation_ventilation", "technical_equipment_ventilation_year", "technical_equipment_ventilation_technical_condition", "technical_equipment_humidity_adjustment_humidity_adjustment", "technical_equipment_humidity_adjustment_year", "technical_equipment_humidity_adjustment_technical_condition", "technical_equipment_hot_water_predominant_way_of_heating_tv", "technical_equipment_hot_water_hot_water_source", "technical_equipment_hot_water_year", "technical_equipment_hot_water_technical_condition", "technical_equipment_lighting_lighting", "technical_equipment_lighting_year", "technical_equipment_lighting_technical_condition", "technical_equipment_lighting_other_technological_elements", "technical_equipment_lighting_measurement_method", "oze_energy_production_solar_energy_photovoltaic", "oze_energy_production_solar_energy_photothermal", "oze_energy_production_integrated_turbines_wind_energy", "oze_energy_production_heat_pump", "waste_and_emissions_solid_waste_production", "waste_and_emissions_tied_co2_emissions", "waste_and_emissions_sox_emissions", "waste_and_emissions_operating_co_2emissions", "link"];
|
|
374
|
-
additionalProperties: boolean;
|
|
375
|
-
};
|
|
376
|
-
};
|
|
377
|
-
declare const outputEnesaEnergyConsumptionJsonSchema: {
|
|
378
|
-
type: string;
|
|
379
|
-
items: {
|
|
380
|
-
type: string;
|
|
381
|
-
properties: {
|
|
382
|
-
time_utc: {
|
|
383
|
-
type: string;
|
|
384
|
-
};
|
|
385
|
-
value: {
|
|
386
|
-
type: string;
|
|
387
|
-
};
|
|
388
|
-
addr: {
|
|
389
|
-
type: string;
|
|
390
|
-
};
|
|
391
|
-
var: {
|
|
392
|
-
type: string;
|
|
393
|
-
};
|
|
394
|
-
type: {
|
|
395
|
-
type: string;
|
|
396
|
-
};
|
|
397
|
-
commodity: {
|
|
398
|
-
type: string;
|
|
399
|
-
};
|
|
400
|
-
unit: {
|
|
401
|
-
type: string;
|
|
402
|
-
};
|
|
403
|
-
meter: {
|
|
404
|
-
type: string;
|
|
405
|
-
};
|
|
406
|
-
};
|
|
407
|
-
required: readonly ["time_utc", "value", "addr", "var", "type", "commodity", "unit", "meter"];
|
|
408
|
-
additionalProperties: boolean;
|
|
409
|
-
};
|
|
410
|
-
};
|
|
411
|
-
declare const outputEnesaEnergyDevicesJsonSchema: {
|
|
412
|
-
type: string;
|
|
413
|
-
items: {
|
|
414
|
-
type: string;
|
|
415
|
-
properties: {
|
|
416
|
-
id: {
|
|
417
|
-
type: string;
|
|
418
|
-
};
|
|
419
|
-
addr: {
|
|
420
|
-
type: string;
|
|
421
|
-
};
|
|
422
|
-
description: {
|
|
423
|
-
type: string;
|
|
424
|
-
};
|
|
425
|
-
meter_number: {
|
|
426
|
-
type: string;
|
|
427
|
-
};
|
|
428
|
-
meter_index: {
|
|
429
|
-
type: string;
|
|
430
|
-
};
|
|
431
|
-
location_number: {
|
|
432
|
-
type: string;
|
|
433
|
-
};
|
|
434
|
-
location_description: {
|
|
435
|
-
type: string;
|
|
436
|
-
};
|
|
437
|
-
include_in_evaluation: {
|
|
438
|
-
type: string;
|
|
439
|
-
};
|
|
440
|
-
meter_type: {
|
|
441
|
-
type: string;
|
|
442
|
-
};
|
|
443
|
-
category: {
|
|
444
|
-
type: string;
|
|
445
|
-
};
|
|
446
|
-
unit: {
|
|
447
|
-
type: string;
|
|
448
|
-
};
|
|
449
|
-
replaced_meter_id: {
|
|
450
|
-
type: string;
|
|
451
|
-
};
|
|
452
|
-
deleted: {
|
|
453
|
-
type: string;
|
|
454
|
-
};
|
|
455
|
-
building_id: {
|
|
456
|
-
type: string;
|
|
457
|
-
};
|
|
458
|
-
};
|
|
459
|
-
required: readonly ["id", "addr", "description", "meter_number", "meter_index", "location_number", "location_description", "include_in_evaluation", "meter_type", "category", "unit", "replaced_meter_id", "deleted", "building_id"];
|
|
460
|
-
additionalProperties: boolean;
|
|
461
|
-
};
|
|
462
|
-
};
|
|
463
|
-
export { outputEnesaEnergyBuildingsJsonSchema, outputEnesaEnergyConsumptionJsonSchema, outputEnesaEnergyDevicesJsonSchema };
|