@golemio/energetics 1.3.5 → 1.3.6
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/db/example/00_clear_test_data.sql +6 -0
- package/db/example/01_buildings.sql +206 -0
- package/db/example/02_organizations.sql +24 -0
- package/db/example/03_devices.sql +24 -0
- package/db/migrations/postgresql/.config.json +1 -1
- package/db/migrations/postgresql/20240514074033-buildings.js +53 -0
- package/db/migrations/postgresql/20240514111900-organizations.js +53 -0
- package/db/migrations/postgresql/sqls/20240514074033-buildings-down.sql +2 -0
- package/db/migrations/postgresql/sqls/20240514074033-buildings-up.sql +138 -0
- package/db/migrations/postgresql/sqls/20240514111900-organizations-down.sql +3 -0
- package/db/migrations/postgresql/sqls/20240514111900-organizations-up.sql +37 -0
- package/dist/integration-engine/tasks/oict-energetika/FetchDataTask.js +0 -2
- package/dist/integration-engine/tasks/oict-energetika/FetchDataTask.js.map +1 -1
- package/dist/integration-engine/workers/oict-energetika/OictEnergetikaWorker.js +0 -4
- package/dist/integration-engine/workers/oict-energetika/OictEnergetikaWorker.js.map +1 -1
- package/dist/output-gateway/constants/Links.d.ts +3 -0
- package/dist/output-gateway/constants/Links.js +7 -0
- package/dist/output-gateway/constants/Links.js.map +1 -0
- package/dist/output-gateway/constants/RouteVersion.d.ts +3 -0
- package/dist/output-gateway/constants/RouteVersion.js +8 -0
- package/dist/output-gateway/constants/RouteVersion.js.map +1 -0
- package/dist/output-gateway/controllers/v2/BuildingsController.d.ts +11 -0
- package/dist/output-gateway/controllers/v2/BuildingsController.js +74 -0
- package/dist/output-gateway/controllers/v2/BuildingsController.js.map +1 -0
- package/dist/output-gateway/controllers/v2/V2DevicesController.d.ts +11 -0
- package/dist/output-gateway/controllers/v2/V2DevicesController.js +67 -0
- package/dist/output-gateway/controllers/v2/V2DevicesController.js.map +1 -0
- package/dist/output-gateway/controllers/v2/V2OrganizationsController.d.ts +13 -0
- package/dist/output-gateway/controllers/v2/V2OrganizationsController.js +79 -0
- package/dist/output-gateway/controllers/v2/V2OrganizationsController.js.map +1 -0
- package/dist/output-gateway/helpers/CreateLinkHelper.d.ts +6 -0
- package/dist/output-gateway/helpers/CreateLinkHelper.js +32 -0
- package/dist/output-gateway/helpers/CreateLinkHelper.js.map +1 -0
- package/dist/output-gateway/index.d.ts +1 -0
- package/dist/output-gateway/index.js +10 -0
- package/dist/output-gateway/index.js.map +1 -0
- package/dist/output-gateway/ioc/Di.d.ts +3 -0
- package/dist/output-gateway/ioc/Di.js +51 -0
- package/dist/output-gateway/ioc/Di.js.map +1 -0
- package/dist/output-gateway/ioc/ModuleContainerToken.d.ts +22 -0
- package/dist/output-gateway/ioc/ModuleContainerToken.js +26 -0
- package/dist/output-gateway/ioc/ModuleContainerToken.js.map +1 -0
- package/dist/output-gateway/models/BuildingsPrimaryModel.d.ts +17 -0
- package/dist/output-gateway/models/BuildingsPrimaryModel.js +49 -0
- package/dist/output-gateway/models/BuildingsPrimaryModel.js.map +1 -0
- package/dist/output-gateway/models/BuildingsSecondaryModel.d.ts +124 -0
- package/dist/output-gateway/models/BuildingsSecondaryModel.js +338 -0
- package/dist/output-gateway/models/BuildingsSecondaryModel.js.map +1 -0
- package/dist/output-gateway/models/interfaces/IBuildingsTransformationOutput.d.ts +6 -0
- package/dist/output-gateway/models/interfaces/IBuildingsTransformationOutput.js +2 -0
- package/dist/output-gateway/models/interfaces/IBuildingsTransformationOutput.js.map +1 -0
- package/dist/output-gateway/models/interfaces/IFullTransformationSchemaItem.d.ts +156 -0
- package/dist/output-gateway/models/interfaces/IFullTransformationSchemaItem.js +3 -0
- package/dist/output-gateway/models/interfaces/IFullTransformationSchemaItem.js.map +1 -0
- package/dist/output-gateway/models/interfaces/IPrimaryBuildings.d.ts +10 -0
- package/dist/output-gateway/models/interfaces/IPrimaryBuildings.js +3 -0
- package/dist/output-gateway/models/interfaces/IPrimaryBuildings.js.map +1 -0
- package/dist/output-gateway/models/interfaces/ISecondaryBuildings.d.ts +114 -0
- package/dist/output-gateway/models/interfaces/ISecondaryBuildings.js +3 -0
- package/dist/output-gateway/models/interfaces/ISecondaryBuildings.js.map +1 -0
- package/dist/output-gateway/models/interfaces/ISecondaryBuildingsOutput.d.ts +117 -0
- package/dist/output-gateway/models/interfaces/ISecondaryBuildingsOutput.js +3 -0
- package/dist/output-gateway/models/interfaces/ISecondaryBuildingsOutput.js.map +1 -0
- package/dist/output-gateway/repositories/DevicesRepository.d.ts +8 -0
- package/dist/output-gateway/repositories/DevicesRepository.js +64 -0
- package/dist/output-gateway/repositories/DevicesRepository.js.map +1 -0
- package/dist/output-gateway/repositories/OrganizationBuildingsRepository.d.ts +6 -0
- package/dist/output-gateway/repositories/OrganizationBuildingsRepository.js +47 -0
- package/dist/output-gateway/repositories/OrganizationBuildingsRepository.js.map +1 -0
- package/dist/output-gateway/repositories/OrganizationResponsibleUsersRepository.d.ts +6 -0
- package/dist/output-gateway/repositories/OrganizationResponsibleUsersRepository.js +47 -0
- package/dist/output-gateway/repositories/OrganizationResponsibleUsersRepository.js.map +1 -0
- package/dist/output-gateway/repositories/OrganizationsRepository.d.ts +17 -0
- package/dist/output-gateway/repositories/OrganizationsRepository.js +133 -0
- package/dist/output-gateway/repositories/OrganizationsRepository.js.map +1 -0
- package/dist/output-gateway/repositories/PrimaryBuildingsRepository.d.ts +15 -0
- package/dist/output-gateway/repositories/PrimaryBuildingsRepository.js +86 -0
- package/dist/output-gateway/repositories/PrimaryBuildingsRepository.js.map +1 -0
- package/dist/output-gateway/repositories/SecondaryBuildingsRepository.d.ts +6 -0
- package/dist/output-gateway/repositories/SecondaryBuildingsRepository.js +33 -0
- package/dist/output-gateway/repositories/SecondaryBuildingsRepository.js.map +1 -0
- package/dist/output-gateway/repositories/helpers/OrganizationsAssociations.d.ts +9 -0
- package/dist/output-gateway/repositories/helpers/OrganizationsAssociations.js +47 -0
- package/dist/output-gateway/repositories/helpers/OrganizationsAssociations.js.map +1 -0
- package/dist/output-gateway/repositories/interfaces/IOrganizationBuildingDto.d.ts +5 -0
- package/dist/output-gateway/repositories/interfaces/IOrganizationBuildingDto.js +3 -0
- package/dist/output-gateway/repositories/interfaces/IOrganizationBuildingDto.js.map +1 -0
- package/dist/output-gateway/repositories/interfaces/IOrganizationDetailDto.d.ts +18 -0
- package/dist/output-gateway/repositories/interfaces/IOrganizationDetailDto.js +3 -0
- package/dist/output-gateway/repositories/interfaces/IOrganizationDetailDto.js.map +1 -0
- package/dist/output-gateway/repositories/interfaces/IOrganizationDto.d.ts +4 -0
- package/dist/output-gateway/repositories/interfaces/IOrganizationDto.js +3 -0
- package/dist/output-gateway/repositories/interfaces/IOrganizationDto.js.map +1 -0
- package/dist/output-gateway/repositories/interfaces/IOrganizationResponsibleUserDto.d.ts +8 -0
- package/dist/output-gateway/repositories/interfaces/IOrganizationResponsibleUserDto.js +3 -0
- package/dist/output-gateway/repositories/interfaces/IOrganizationResponsibleUserDto.js.map +1 -0
- package/dist/output-gateway/routers/helpers/parseParams.d.ts +4 -0
- package/dist/output-gateway/routers/helpers/parseParams.js +17 -0
- package/dist/output-gateway/routers/helpers/parseParams.js.map +1 -0
- package/dist/output-gateway/routers/interfaces/IDeviceResponse.d.ts +6 -0
- package/dist/output-gateway/routers/interfaces/IDeviceResponse.js +3 -0
- package/dist/output-gateway/routers/interfaces/IDeviceResponse.js.map +1 -0
- package/dist/output-gateway/routers/interfaces/IOrganizationDetailResponse.d.ts +34 -0
- package/dist/output-gateway/routers/interfaces/IOrganizationDetailResponse.js +3 -0
- package/dist/output-gateway/routers/interfaces/IOrganizationDetailResponse.js.map +1 -0
- package/dist/output-gateway/routers/interfaces/IOrganizationResponse.d.ts +4 -0
- package/dist/output-gateway/routers/interfaces/IOrganizationResponse.js +3 -0
- package/dist/output-gateway/routers/interfaces/IOrganizationResponse.js.map +1 -0
- package/dist/output-gateway/routers/interfaces/IPaginationParams.d.ts +4 -0
- package/dist/output-gateway/routers/interfaces/IPaginationParams.js +3 -0
- package/dist/output-gateway/routers/interfaces/IPaginationParams.js.map +1 -0
- package/dist/output-gateway/routers/v2/BuildingsRouter.d.ts +10 -0
- package/dist/output-gateway/routers/v2/BuildingsRouter.js +28 -0
- package/dist/output-gateway/routers/v2/BuildingsRouter.js.map +1 -0
- package/dist/output-gateway/routers/v2/V2DevicesRouter.d.ts +7 -0
- package/dist/output-gateway/routers/v2/V2DevicesRouter.js +41 -0
- package/dist/output-gateway/routers/v2/V2DevicesRouter.js.map +1 -0
- package/dist/output-gateway/routers/v2/V2OrganizationsRouter.d.ts +7 -0
- package/dist/output-gateway/routers/v2/V2OrganizationsRouter.js +41 -0
- package/dist/output-gateway/routers/v2/V2OrganizationsRouter.js.map +1 -0
- package/dist/output-gateway/transformations/BuildingTransformationFull.d.ts +14 -0
- package/dist/output-gateway/transformations/BuildingTransformationFull.js +218 -0
- package/dist/output-gateway/transformations/BuildingTransformationFull.js.map +1 -0
- package/dist/output-gateway/transformations/BuildingsTransformation.d.ts +8 -0
- package/dist/output-gateway/transformations/BuildingsTransformation.js +38 -0
- package/dist/output-gateway/transformations/BuildingsTransformation.js.map +1 -0
- package/dist/output-gateway/transformations/DeviceDtoTransformation.d.ts +8 -0
- package/dist/output-gateway/transformations/DeviceDtoTransformation.js +43 -0
- package/dist/output-gateway/transformations/DeviceDtoTransformation.js.map +1 -0
- package/dist/output-gateway/transformations/OrganizationDetailDtoTransformation.d.ts +9 -0
- package/dist/output-gateway/transformations/OrganizationDetailDtoTransformation.js +64 -0
- package/dist/output-gateway/transformations/OrganizationDetailDtoTransformation.js.map +1 -0
- package/dist/output-gateway/transformations/OrganizationDtoTransformation.d.ts +9 -0
- package/dist/output-gateway/transformations/OrganizationDtoTransformation.js +36 -0
- package/dist/output-gateway/transformations/OrganizationDtoTransformation.js.map +1 -0
- package/dist/schema-definitions/models/OrganizationBuildingModel.d.ts +10 -0
- package/dist/schema-definitions/models/OrganizationBuildingModel.js +33 -0
- package/dist/schema-definitions/models/OrganizationBuildingModel.js.map +1 -0
- package/dist/schema-definitions/models/OrganizationResponsibleUsersModel.d.ts +16 -0
- package/dist/schema-definitions/models/OrganizationResponsibleUsersModel.js +44 -0
- package/dist/schema-definitions/models/OrganizationResponsibleUsersModel.js.map +1 -0
- package/dist/schema-definitions/models/OrganizationsModel.d.ts +21 -0
- package/dist/schema-definitions/models/OrganizationsModel.js +59 -0
- package/dist/schema-definitions/models/OrganizationsModel.js.map +1 -0
- package/dist/schema-definitions/models/interfaces/IOrganizationBuildingsModel.d.ts +4 -0
- package/dist/schema-definitions/models/interfaces/IOrganizationBuildingsModel.js +3 -0
- package/dist/schema-definitions/models/interfaces/IOrganizationBuildingsModel.js.map +1 -0
- package/dist/schema-definitions/models/interfaces/IOrganizationResponsibleUsersModel.d.ts +10 -0
- package/dist/schema-definitions/models/interfaces/IOrganizationResponsibleUsersModel.js +3 -0
- package/dist/schema-definitions/models/interfaces/IOrganizationResponsibleUsersModel.js.map +1 -0
- package/dist/schema-definitions/models/interfaces/IOrganizationsModel.d.ts +15 -0
- package/dist/schema-definitions/models/interfaces/IOrganizationsModel.js +3 -0
- package/dist/schema-definitions/models/interfaces/IOrganizationsModel.js.map +1 -0
- package/docs/implementation_documentation.md +41 -41
- package/docs/openapi-output.yaml +854 -0
- package/package.json +5 -3
- package/dist/integration-engine/repositories/oict-energetika/BuildingsRepository.d.ts +0 -4
- package/dist/integration-engine/repositories/oict-energetika/BuildingsRepository.js +0 -19
- package/dist/integration-engine/repositories/oict-energetika/BuildingsRepository.js.map +0 -1
- package/dist/integration-engine/repositories/oict-energetika/DevicesRepository.d.ts +0 -4
- package/dist/integration-engine/repositories/oict-energetika/DevicesRepository.js +0 -19
- package/dist/integration-engine/repositories/oict-energetika/DevicesRepository.js.map +0 -1
- package/dist/integration-engine/tasks/oict-energetika/FetchBuildingsTask.d.ts +0 -9
- package/dist/integration-engine/tasks/oict-energetika/FetchBuildingsTask.js +0 -44
- package/dist/integration-engine/tasks/oict-energetika/FetchBuildingsTask.js.map +0 -1
- package/dist/integration-engine/tasks/oict-energetika/FetchDevicesTask.d.ts +0 -9
- package/dist/integration-engine/tasks/oict-energetika/FetchDevicesTask.js +0 -44
- package/dist/integration-engine/tasks/oict-energetika/FetchDevicesTask.js.map +0 -1
- package/dist/integration-engine/transformations/oict-energetika/BuildingsTransformation.d.ts +0 -7
- package/dist/integration-engine/transformations/oict-energetika/BuildingsTransformation.js +0 -166
- package/dist/integration-engine/transformations/oict-energetika/BuildingsTransformation.js.map +0 -1
- package/dist/integration-engine/transformations/oict-energetika/DevicesTransformation.d.ts +0 -7
- package/dist/integration-engine/transformations/oict-energetika/DevicesTransformation.js +0 -41
- package/dist/integration-engine/transformations/oict-energetika/DevicesTransformation.js.map +0 -1
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
|
|
2
|
+
import { ISecondaryBuildings } from "./interfaces/ISecondaryBuildings";
|
|
3
|
+
import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
|
|
4
|
+
import { Point } from "geojson";
|
|
5
|
+
export declare class BuildingsSecondaryModel extends Model<ISecondaryBuildings> implements ISecondaryBuildings {
|
|
6
|
+
static tableName: string;
|
|
7
|
+
static modelName: string;
|
|
8
|
+
id: number;
|
|
9
|
+
building_address_code: string;
|
|
10
|
+
building_label: string;
|
|
11
|
+
current_note: string;
|
|
12
|
+
method_of_protection: string;
|
|
13
|
+
built_up_area: number;
|
|
14
|
+
heated_bulding_volume: number;
|
|
15
|
+
students_count: number;
|
|
16
|
+
employees_count: number;
|
|
17
|
+
classrooms_count: number;
|
|
18
|
+
beds_count: number;
|
|
19
|
+
eno_id: string;
|
|
20
|
+
csu_code: string;
|
|
21
|
+
ku_code: string;
|
|
22
|
+
allotment_number: string;
|
|
23
|
+
registration_unit: string;
|
|
24
|
+
energetic_management: string;
|
|
25
|
+
opening_hours: string;
|
|
26
|
+
weekend_opening_hours: string;
|
|
27
|
+
latitude: string;
|
|
28
|
+
longitude: string;
|
|
29
|
+
location: Point;
|
|
30
|
+
address_street: string;
|
|
31
|
+
address_house_number: string;
|
|
32
|
+
address_city: string;
|
|
33
|
+
address_country: string;
|
|
34
|
+
address_mail: string;
|
|
35
|
+
address_phone: string;
|
|
36
|
+
address_web_address: string;
|
|
37
|
+
penb_penbnumber: number;
|
|
38
|
+
penb_issue_date: string;
|
|
39
|
+
penb_total_building_envelope_area: number;
|
|
40
|
+
penb_volume_factor_of_avshape: string;
|
|
41
|
+
penb_total_energy_reference_area: number;
|
|
42
|
+
penb_total_provided_energy: number;
|
|
43
|
+
penb_total_provided_energy_category: string;
|
|
44
|
+
penb_primary_non_renewable_energy: number;
|
|
45
|
+
penb_primary_non_renewable_energy_category: string;
|
|
46
|
+
penb_building_envelope: number;
|
|
47
|
+
penb_building_envelope_category: string;
|
|
48
|
+
penb_heating: number;
|
|
49
|
+
penb_heating_category: string;
|
|
50
|
+
penb_cooling: number;
|
|
51
|
+
penb_cooling_category: string;
|
|
52
|
+
penb_ventilation: number;
|
|
53
|
+
penb_ventilation_category: string;
|
|
54
|
+
penb_humidity_adjustment: number;
|
|
55
|
+
penb_humidity_adjustment_category: string;
|
|
56
|
+
penb_warm_water: number;
|
|
57
|
+
penb_warm_water_category: string;
|
|
58
|
+
penb_lighting: number;
|
|
59
|
+
penb_lighting_category: string;
|
|
60
|
+
energy_audits_energy_audit: string;
|
|
61
|
+
energy_audits_earegistration_number: string;
|
|
62
|
+
energy_audits_created_at: string;
|
|
63
|
+
building_envelope_side_wall_prevailing_construction: string;
|
|
64
|
+
building_envelope_side_wall_area: number;
|
|
65
|
+
building_envelope_side_wall_heat_insulation: string;
|
|
66
|
+
building_envelope_side_wall_year_of_adjustment: string;
|
|
67
|
+
building_envelope_side_wall_technical_condition: string;
|
|
68
|
+
building_envelope_filling_of_hole_construction: string;
|
|
69
|
+
building_envelope_filling_of_hole_area: number;
|
|
70
|
+
building_envelope_filling_of_hole_year_of_adjustment: string;
|
|
71
|
+
building_envelope_filling_of_hole_technical_condition: string;
|
|
72
|
+
building_envelope_roof_construction: string;
|
|
73
|
+
building_envelope_roof_area: number;
|
|
74
|
+
building_envelope_roof_thermal_insulation: string;
|
|
75
|
+
building_envelope_roof_year_of_adjustment: string;
|
|
76
|
+
building_envelope_roof_technical_condition: string;
|
|
77
|
+
building_envelope_floor_of_the_lowest_heated_floor_construction: string;
|
|
78
|
+
building_envelope_floor_of_the_lowest_heated_floor_area: number;
|
|
79
|
+
floor_of_the_lowest_heated_floor_thermal_insulation: string;
|
|
80
|
+
building_envelope_floor_of_the_lowest_heated_floor_year_of_adju: string;
|
|
81
|
+
floor_of_the_lowest_heated_floor_technical_condition: string;
|
|
82
|
+
fuel_and_energy_coal: boolean;
|
|
83
|
+
fuel_and_energy_gas: boolean;
|
|
84
|
+
fuel_and_energy_electricity: boolean;
|
|
85
|
+
fuel_and_energy_czt: boolean;
|
|
86
|
+
fuel_and_energy_oze: boolean;
|
|
87
|
+
fuel_and_energy_other: boolean;
|
|
88
|
+
technical_equipment_heating_main_source_of_heat: string;
|
|
89
|
+
technical_equipment_heating_heat_percentage: number;
|
|
90
|
+
technical_equipment_heating_secondary_source_of_heat: string;
|
|
91
|
+
technical_equipment_heating_heating_system: string;
|
|
92
|
+
technical_equipment_heating_year: string;
|
|
93
|
+
technical_equipment_heating_technical_condition: string;
|
|
94
|
+
technical_equipment_cooling_cooling_system: string;
|
|
95
|
+
technical_equipment_cooling_cooling_area_percentage: number;
|
|
96
|
+
technical_equipment_cooling_year: string;
|
|
97
|
+
technical_equipment_cooling_technical_condition: string;
|
|
98
|
+
technical_equipment_ventilation_ventilation: string;
|
|
99
|
+
technical_equipment_ventilation_year: string;
|
|
100
|
+
technical_equipment_ventilation_technical_condition: string;
|
|
101
|
+
technical_equipment_humidity_adjustment_humidity_adjustment: string;
|
|
102
|
+
technical_equipment_humidity_adjustment_year: string;
|
|
103
|
+
technical_equipment_humidity_adjustment_technical_condition: string;
|
|
104
|
+
technical_equipment_hot_water_predominant_way_of_heating_tv: string;
|
|
105
|
+
technical_equipment_hot_water_hot_water_source: string;
|
|
106
|
+
technical_equipment_hot_water_year: string;
|
|
107
|
+
technical_equipment_hot_water_technical_condition: string;
|
|
108
|
+
technical_equipment_lighting_lighting: string;
|
|
109
|
+
technical_equipment_lighting_year: string;
|
|
110
|
+
technical_equipment_lighting_technical_condition: string;
|
|
111
|
+
technical_equipment_lighting_other_technological_elements: string;
|
|
112
|
+
technical_equipment_lighting_measurement_method: string;
|
|
113
|
+
oze_energy_production_solar_energy_photovoltaic: string;
|
|
114
|
+
oze_energy_production_solar_energy_photothermal: string;
|
|
115
|
+
oze_energy_production_integrated_turbines_wind_energy: string;
|
|
116
|
+
oze_energy_production_heat_pump: string;
|
|
117
|
+
waste_and_emissions_solid_waste_production: string;
|
|
118
|
+
waste_and_emissions_tied_co2_emissions: string;
|
|
119
|
+
waste_and_emissions_sox_emissions: string;
|
|
120
|
+
waste_and_emissions_operating_co_2emissions: string;
|
|
121
|
+
link: string;
|
|
122
|
+
static attributeModel: ModelAttributes<BuildingsSecondaryModel>;
|
|
123
|
+
static arrayJsonSchema: JSONSchemaType<ISecondaryBuildings[]>;
|
|
124
|
+
}
|
|
@@ -0,0 +1,338 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BuildingsSecondaryModel = void 0;
|
|
4
|
+
const sequelize_1 = require("@golemio/core/dist/shared/sequelize");
|
|
5
|
+
const schema_definitions_1 = require("@golemio/core/dist/schema-definitions");
|
|
6
|
+
class BuildingsSecondaryModel extends sequelize_1.Model {
|
|
7
|
+
}
|
|
8
|
+
exports.BuildingsSecondaryModel = BuildingsSecondaryModel;
|
|
9
|
+
BuildingsSecondaryModel.tableName = "consumption_energy_buildings_secondary";
|
|
10
|
+
BuildingsSecondaryModel.modelName = "BuildingsSecondaryModelData";
|
|
11
|
+
BuildingsSecondaryModel.attributeModel = {
|
|
12
|
+
id: {
|
|
13
|
+
primaryKey: true,
|
|
14
|
+
type: sequelize_1.DataTypes.INTEGER,
|
|
15
|
+
},
|
|
16
|
+
building_address_code: sequelize_1.DataTypes.STRING(100),
|
|
17
|
+
building_label: sequelize_1.DataTypes.STRING(100),
|
|
18
|
+
current_note: sequelize_1.DataTypes.STRING(100),
|
|
19
|
+
method_of_protection: sequelize_1.DataTypes.STRING(100),
|
|
20
|
+
built_up_area: sequelize_1.DataTypes.REAL,
|
|
21
|
+
heated_bulding_volume: sequelize_1.DataTypes.INTEGER,
|
|
22
|
+
students_count: sequelize_1.DataTypes.INTEGER,
|
|
23
|
+
employees_count: sequelize_1.DataTypes.INTEGER,
|
|
24
|
+
classrooms_count: sequelize_1.DataTypes.INTEGER,
|
|
25
|
+
beds_count: sequelize_1.DataTypes.INTEGER,
|
|
26
|
+
eno_id: sequelize_1.DataTypes.STRING(100),
|
|
27
|
+
csu_code: sequelize_1.DataTypes.STRING(100),
|
|
28
|
+
ku_code: sequelize_1.DataTypes.STRING(100),
|
|
29
|
+
allotment_number: sequelize_1.DataTypes.STRING(100),
|
|
30
|
+
registration_unit: sequelize_1.DataTypes.STRING(100),
|
|
31
|
+
energetic_management: sequelize_1.DataTypes.STRING(100),
|
|
32
|
+
opening_hours: sequelize_1.DataTypes.STRING(100),
|
|
33
|
+
weekend_opening_hours: sequelize_1.DataTypes.STRING(100),
|
|
34
|
+
location: sequelize_1.DataTypes.GEOMETRY,
|
|
35
|
+
address_street: sequelize_1.DataTypes.STRING(100),
|
|
36
|
+
address_house_number: sequelize_1.DataTypes.STRING(100),
|
|
37
|
+
address_city: sequelize_1.DataTypes.STRING(100),
|
|
38
|
+
address_country: sequelize_1.DataTypes.STRING(100),
|
|
39
|
+
address_mail: sequelize_1.DataTypes.STRING(100),
|
|
40
|
+
address_phone: sequelize_1.DataTypes.STRING(100),
|
|
41
|
+
address_web_address: sequelize_1.DataTypes.STRING(100),
|
|
42
|
+
penb_penbnumber: sequelize_1.DataTypes.INTEGER,
|
|
43
|
+
penb_issue_date: sequelize_1.DataTypes.STRING(100),
|
|
44
|
+
penb_total_building_envelope_area: sequelize_1.DataTypes.STRING(100),
|
|
45
|
+
penb_volume_factor_of_avshape: sequelize_1.DataTypes.STRING(100),
|
|
46
|
+
penb_total_energy_reference_area: sequelize_1.DataTypes.STRING(100),
|
|
47
|
+
penb_total_provided_energy: sequelize_1.DataTypes.REAL,
|
|
48
|
+
penb_total_provided_energy_category: sequelize_1.DataTypes.STRING(50),
|
|
49
|
+
penb_primary_non_renewable_energy: sequelize_1.DataTypes.REAL,
|
|
50
|
+
penb_primary_non_renewable_energy_category: sequelize_1.DataTypes.STRING(50),
|
|
51
|
+
penb_building_envelope: sequelize_1.DataTypes.REAL,
|
|
52
|
+
penb_building_envelope_category: sequelize_1.DataTypes.STRING(50),
|
|
53
|
+
penb_heating: sequelize_1.DataTypes.REAL,
|
|
54
|
+
penb_heating_category: sequelize_1.DataTypes.STRING(50),
|
|
55
|
+
penb_cooling: sequelize_1.DataTypes.REAL,
|
|
56
|
+
penb_cooling_category: sequelize_1.DataTypes.REAL,
|
|
57
|
+
penb_ventilation: sequelize_1.DataTypes.STRING(100),
|
|
58
|
+
penb_ventilation_category: sequelize_1.DataTypes.STRING(50),
|
|
59
|
+
penb_humidity_adjustment: sequelize_1.DataTypes.REAL,
|
|
60
|
+
penb_humidity_adjustment_category: sequelize_1.DataTypes.STRING(50),
|
|
61
|
+
penb_warm_water: sequelize_1.DataTypes.REAL,
|
|
62
|
+
penb_warm_water_category: sequelize_1.DataTypes.STRING(50),
|
|
63
|
+
penb_lighting: sequelize_1.DataTypes.REAL,
|
|
64
|
+
penb_lighting_category: sequelize_1.DataTypes.STRING(50),
|
|
65
|
+
energy_audits_energy_audit: sequelize_1.DataTypes.STRING(100),
|
|
66
|
+
energy_audits_earegistration_number: sequelize_1.DataTypes.STRING(100),
|
|
67
|
+
energy_audits_created_at: sequelize_1.DataTypes.STRING(100),
|
|
68
|
+
building_envelope_side_wall_prevailing_construction: sequelize_1.DataTypes.STRING(100),
|
|
69
|
+
building_envelope_side_wall_area: sequelize_1.DataTypes.REAL,
|
|
70
|
+
building_envelope_side_wall_heat_insulation: sequelize_1.DataTypes.STRING(100),
|
|
71
|
+
building_envelope_side_wall_year_of_adjustment: sequelize_1.DataTypes.STRING(100),
|
|
72
|
+
building_envelope_side_wall_technical_condition: sequelize_1.DataTypes.STRING(100),
|
|
73
|
+
building_envelope_filling_of_hole_construction: sequelize_1.DataTypes.STRING(100),
|
|
74
|
+
building_envelope_filling_of_hole_area: sequelize_1.DataTypes.REAL,
|
|
75
|
+
building_envelope_filling_of_hole_year_of_adjustment: sequelize_1.DataTypes.STRING(100),
|
|
76
|
+
building_envelope_filling_of_hole_technical_condition: sequelize_1.DataTypes.STRING(100),
|
|
77
|
+
building_envelope_roof_construction: sequelize_1.DataTypes.STRING(100),
|
|
78
|
+
building_envelope_roof_area: sequelize_1.DataTypes.REAL,
|
|
79
|
+
building_envelope_roof_thermal_insulation: sequelize_1.DataTypes.STRING(100),
|
|
80
|
+
building_envelope_roof_year_of_adjustment: sequelize_1.DataTypes.STRING(100),
|
|
81
|
+
building_envelope_roof_technical_condition: sequelize_1.DataTypes.STRING(100),
|
|
82
|
+
building_envelope_floor_of_the_lowest_heated_floor_construction: sequelize_1.DataTypes.STRING(100),
|
|
83
|
+
building_envelope_floor_of_the_lowest_heated_floor_area: sequelize_1.DataTypes.REAL,
|
|
84
|
+
floor_of_the_lowest_heated_floor_thermal_insulation: sequelize_1.DataTypes.STRING(100),
|
|
85
|
+
building_envelope_floor_of_the_lowest_heated_floor_year_of_adjustment: sequelize_1.DataTypes.STRING(100),
|
|
86
|
+
floor_of_the_lowest_heated_floor_technical_condition: sequelize_1.DataTypes.STRING(100),
|
|
87
|
+
fuel_and_energy_coal: sequelize_1.DataTypes.BOOLEAN,
|
|
88
|
+
fuel_and_energy_gas: sequelize_1.DataTypes.BOOLEAN,
|
|
89
|
+
fuel_and_energy_electricity: sequelize_1.DataTypes.BOOLEAN,
|
|
90
|
+
fuel_and_energy_czt: sequelize_1.DataTypes.BOOLEAN,
|
|
91
|
+
fuel_and_energy_oze: sequelize_1.DataTypes.BOOLEAN,
|
|
92
|
+
fuel_and_energy_other: sequelize_1.DataTypes.BOOLEAN,
|
|
93
|
+
technical_equipment_heating_main_source_of_heat: sequelize_1.DataTypes.STRING(100),
|
|
94
|
+
technical_equipment_heating_heat_percentage: sequelize_1.DataTypes.INTEGER,
|
|
95
|
+
technical_equipment_heating_secondary_source_of_heat: sequelize_1.DataTypes.STRING(100),
|
|
96
|
+
technical_equipment_heating_heating_system: sequelize_1.DataTypes.STRING(100),
|
|
97
|
+
technical_equipment_heating_year: sequelize_1.DataTypes.STRING(50),
|
|
98
|
+
technical_equipment_heating_technical_condition: sequelize_1.DataTypes.STRING(100),
|
|
99
|
+
technical_equipment_cooling_cooling_system: sequelize_1.DataTypes.STRING(100),
|
|
100
|
+
technical_equipment_cooling_cooling_area_percentage: sequelize_1.DataTypes.STRING(100),
|
|
101
|
+
technical_equipment_cooling_year: sequelize_1.DataTypes.STRING(50),
|
|
102
|
+
technical_equipment_cooling_technical_condition: sequelize_1.DataTypes.STRING(100),
|
|
103
|
+
technical_equipment_ventilation_ventilation: sequelize_1.DataTypes.STRING(100),
|
|
104
|
+
technical_equipment_ventilation_year: sequelize_1.DataTypes.STRING(50),
|
|
105
|
+
technical_equipment_ventilation_technical_condition: sequelize_1.DataTypes.STRING(100),
|
|
106
|
+
technical_equipment_humidity_adjustment_humidity_adjustment: sequelize_1.DataTypes.STRING(100),
|
|
107
|
+
technical_equipment_humidity_adjustment_year: sequelize_1.DataTypes.STRING(50),
|
|
108
|
+
technical_equipment_humidity_adjustment_technical_condition: sequelize_1.DataTypes.STRING(100),
|
|
109
|
+
technical_equipment_hot_water_predominant_way_of_heating_tv: sequelize_1.DataTypes.STRING(100),
|
|
110
|
+
technical_equipment_hot_water_hot_water_source: sequelize_1.DataTypes.STRING(100),
|
|
111
|
+
technical_equipment_hot_water_year: sequelize_1.DataTypes.STRING(50),
|
|
112
|
+
technical_equipment_hot_water_technical_condition: sequelize_1.DataTypes.STRING(100),
|
|
113
|
+
technical_equipment_lighting_lighting: sequelize_1.DataTypes.STRING(100),
|
|
114
|
+
technical_equipment_lighting_year: sequelize_1.DataTypes.STRING(50),
|
|
115
|
+
technical_equipment_lighting_technical_condition: sequelize_1.DataTypes.STRING(100),
|
|
116
|
+
technical_equipment_lighting_other_technological_elements: sequelize_1.DataTypes.STRING(100),
|
|
117
|
+
technical_equipment_lighting_measurement_method: sequelize_1.DataTypes.STRING(100),
|
|
118
|
+
oze_energy_production_solar_energy_photovoltaic: sequelize_1.DataTypes.STRING(100),
|
|
119
|
+
oze_energy_production_solar_energy_photothermal: sequelize_1.DataTypes.STRING(100),
|
|
120
|
+
oze_energy_production_integrated_turbines_wind_energy: sequelize_1.DataTypes.STRING(100),
|
|
121
|
+
oze_energy_production_heat_pump: sequelize_1.DataTypes.STRING(100),
|
|
122
|
+
waste_and_emissions_solid_waste_production: sequelize_1.DataTypes.STRING(100),
|
|
123
|
+
waste_and_emissions_tied_co2_emissions: sequelize_1.DataTypes.STRING(100),
|
|
124
|
+
waste_and_emissions_sox_emissions: sequelize_1.DataTypes.STRING(100),
|
|
125
|
+
waste_and_emissions_operating_co_2emissions: sequelize_1.DataTypes.STRING(100),
|
|
126
|
+
};
|
|
127
|
+
BuildingsSecondaryModel.arrayJsonSchema = {
|
|
128
|
+
type: "array",
|
|
129
|
+
items: {
|
|
130
|
+
type: "object",
|
|
131
|
+
properties: {
|
|
132
|
+
id: { type: "number" },
|
|
133
|
+
building_address_code: { type: "string" },
|
|
134
|
+
building_label: { type: "string" },
|
|
135
|
+
current_note: { type: "string" },
|
|
136
|
+
method_of_protection: { type: "string" },
|
|
137
|
+
built_up_area: { type: "number" },
|
|
138
|
+
heated_bulding_volume: { type: "number" },
|
|
139
|
+
students_count: { type: "number" },
|
|
140
|
+
employees_count: { type: "number" },
|
|
141
|
+
classrooms_count: { type: "number" },
|
|
142
|
+
beds_count: { type: "number" },
|
|
143
|
+
eno_id: { type: "string" },
|
|
144
|
+
csu_code: { type: "string" },
|
|
145
|
+
ku_code: { type: "string" },
|
|
146
|
+
allotment_number: { type: "string" },
|
|
147
|
+
registration_unit: { type: "string" },
|
|
148
|
+
energetic_management: { type: "string" },
|
|
149
|
+
opening_hours: { type: "string" },
|
|
150
|
+
weekend_opening_hours: { type: "string" },
|
|
151
|
+
location: { $ref: "#/definitions/geometry" },
|
|
152
|
+
address_street: { type: "string" },
|
|
153
|
+
address_house_number: { type: "string" },
|
|
154
|
+
address_country: { type: "string" },
|
|
155
|
+
address_mail: { type: "string" },
|
|
156
|
+
address_phone: { type: "string" },
|
|
157
|
+
address_web_address: { type: "string" },
|
|
158
|
+
penb_penbnumber: { type: "number" },
|
|
159
|
+
penb_issue_date: { type: "string" },
|
|
160
|
+
penb_total_building_envelope_area: { type: "number" },
|
|
161
|
+
penb_volume_factor_of_avshape: { type: "string" },
|
|
162
|
+
penb_total_energy_reference_area: { type: "number" },
|
|
163
|
+
penb_total_provided_energy: { type: "number" },
|
|
164
|
+
penb_total_provided_energy_category: { type: "string" },
|
|
165
|
+
penb_primary_non_renewable_energy: { type: "number" },
|
|
166
|
+
penb_primary_non_renewable_energy_category: { type: "string" },
|
|
167
|
+
penb_building_envelope: { type: "number" },
|
|
168
|
+
penb_building_envelope_category: { type: "string" },
|
|
169
|
+
penb_heating: { type: "number" },
|
|
170
|
+
penb_heating_category: { type: "string" },
|
|
171
|
+
penb_cooling: { type: "number" },
|
|
172
|
+
penb_cooling_category: { type: "string" },
|
|
173
|
+
penb_ventilation: { type: "number" },
|
|
174
|
+
penb_ventilation_category: { type: "string" },
|
|
175
|
+
penb_humidity_adjustment: { type: "number" },
|
|
176
|
+
penb_humidity_adjustment_category: { type: "string" },
|
|
177
|
+
penb_warm_water: { type: "number" },
|
|
178
|
+
penb_warm_water_category: { type: "string" },
|
|
179
|
+
penb_lighting: { type: "number" },
|
|
180
|
+
penb_lighting_category: { type: "string" },
|
|
181
|
+
energy_audits_energy_audit: { type: "string" },
|
|
182
|
+
energy_audits_earegistration_number: { type: "string" },
|
|
183
|
+
energy_audits_created_at: { type: "string" },
|
|
184
|
+
building_envelope_side_wall_prevailing_construction: { type: "string" },
|
|
185
|
+
building_envelope_side_wall_area: { type: "number" },
|
|
186
|
+
building_envelope_side_wall_heat_insulation: { type: "string" },
|
|
187
|
+
building_envelope_side_wall_year_of_adjustment: { type: "string" },
|
|
188
|
+
building_envelope_side_wall_technical_condition: { type: "string" },
|
|
189
|
+
building_envelope_filling_of_hole_construction: { type: "string" },
|
|
190
|
+
building_envelope_filling_of_hole_area: { type: "number" },
|
|
191
|
+
building_envelope_filling_of_hole_year_of_adjustment: { type: "string" },
|
|
192
|
+
building_envelope_filling_of_hole_technical_condition: { type: "string" },
|
|
193
|
+
building_envelope_roof_construction: { type: "string" },
|
|
194
|
+
building_envelope_roof_area: { type: "number" },
|
|
195
|
+
building_envelope_roof_thermal_insulation: { type: "string" },
|
|
196
|
+
building_envelope_roof_year_of_adjustment: { type: "string" },
|
|
197
|
+
building_envelope_roof_technical_condition: { type: "string" },
|
|
198
|
+
building_envelope_floor_of_the_lowest_heated_floor_construction: { type: "string" },
|
|
199
|
+
building_envelope_floor_of_the_lowest_heated_floor_area: { type: "number" },
|
|
200
|
+
floor_of_the_lowest_heated_floor_thermal_insulation: { type: "string" },
|
|
201
|
+
building_envelope_floor_of_the_lowest_heated_floor_year_of_adju: { type: "string" },
|
|
202
|
+
floor_of_the_lowest_heated_floor_technical_condition: { type: "string" },
|
|
203
|
+
fuel_and_energy_coal: { type: "boolean" },
|
|
204
|
+
fuel_and_energy_gas: { type: "boolean" },
|
|
205
|
+
fuel_and_energy_electricity: { type: "boolean" },
|
|
206
|
+
fuel_and_energy_czt: { type: "boolean" },
|
|
207
|
+
fuel_and_energy_oze: { type: "boolean" },
|
|
208
|
+
fuel_and_energy_other: { type: "boolean" },
|
|
209
|
+
technical_equipment_heating_main_source_of_heat: { type: "string" },
|
|
210
|
+
technical_equipment_heating_heat_percentage: { type: "number" },
|
|
211
|
+
technical_equipment_heating_secondary_source_of_heat: { type: "string" },
|
|
212
|
+
technical_equipment_heating_heating_system: { type: "string" },
|
|
213
|
+
technical_equipment_heating_year: { type: "string" },
|
|
214
|
+
technical_equipment_heating_technical_condition: { type: "string" },
|
|
215
|
+
technical_equipment_cooling_cooling_system: { type: "string" },
|
|
216
|
+
technical_equipment_cooling_cooling_area_percentage: { type: "number" },
|
|
217
|
+
technical_equipment_cooling_year: { type: "string" },
|
|
218
|
+
technical_equipment_cooling_technical_condition: { type: "string" },
|
|
219
|
+
technical_equipment_ventilation_ventilation: { type: "string" },
|
|
220
|
+
technical_equipment_ventilation_year: { type: "string" },
|
|
221
|
+
technical_equipment_ventilation_technical_condition: { type: "string" },
|
|
222
|
+
technical_equipment_humidity_adjustment_humidity_adjustment: { type: "string" },
|
|
223
|
+
technical_equipment_humidity_adjustment_year: { type: "string" },
|
|
224
|
+
technical_equipment_humidity_adjustment_technical_condition: { type: "string" },
|
|
225
|
+
technical_equipment_hot_water_predominant_way_of_heating_tv: { type: "string" },
|
|
226
|
+
technical_equipment_hot_water_hot_water_source: { type: "string" },
|
|
227
|
+
technical_equipment_hot_water_year: { type: "string" },
|
|
228
|
+
technical_equipment_hot_water_technical_condition: { type: "string" },
|
|
229
|
+
technical_equipment_lighting_lighting: { type: "string" },
|
|
230
|
+
technical_equipment_lighting_year: { type: "string" },
|
|
231
|
+
technical_equipment_lighting_technical_condition: { type: "string" },
|
|
232
|
+
technical_equipment_lighting_other_technological_elements: { type: "string" },
|
|
233
|
+
technical_equipment_lighting_measurement_method: { type: "string" },
|
|
234
|
+
oze_energy_production_solar_energy_photovoltaic: { type: "string" },
|
|
235
|
+
oze_energy_production_solar_energy_photothermal: { type: "string" },
|
|
236
|
+
oze_energy_production_integrated_turbines_wind_energy: { type: "string" },
|
|
237
|
+
oze_energy_production_heat_pump: { type: "string" },
|
|
238
|
+
waste_and_emissions_solid_waste_production: { type: "string" },
|
|
239
|
+
waste_and_emissions_tied_co2_emissions: { type: "string" },
|
|
240
|
+
waste_and_emissions_sox_emissions: { type: "string" },
|
|
241
|
+
waste_and_emissions_operating_co_2emissions: { type: "string" },
|
|
242
|
+
},
|
|
243
|
+
required: [
|
|
244
|
+
"id",
|
|
245
|
+
"address_phone",
|
|
246
|
+
"address_web_address",
|
|
247
|
+
"penb_penbnumber",
|
|
248
|
+
"penb_issue_date",
|
|
249
|
+
"penb_total_building_envelope_area",
|
|
250
|
+
"penb_volume_factor_of_avshape",
|
|
251
|
+
"penb_total_energy_reference_area",
|
|
252
|
+
"penb_total_provided_energy",
|
|
253
|
+
"penb_total_provided_energy_category",
|
|
254
|
+
"penb_primary_non_renewable_energy",
|
|
255
|
+
"penb_primary_non_renewable_energy_category",
|
|
256
|
+
"penb_building_envelope",
|
|
257
|
+
"penb_building_envelope_category",
|
|
258
|
+
"penb_heating",
|
|
259
|
+
"penb_heating_category",
|
|
260
|
+
"penb_cooling",
|
|
261
|
+
"penb_cooling_category",
|
|
262
|
+
"penb_ventilation",
|
|
263
|
+
"penb_ventilation_category",
|
|
264
|
+
"penb_humidity_adjustment",
|
|
265
|
+
"penb_humidity_adjustment_category",
|
|
266
|
+
"penb_warm_water",
|
|
267
|
+
"penb_warm_water_category",
|
|
268
|
+
"penb_lighting",
|
|
269
|
+
"penb_lighting_category",
|
|
270
|
+
"energy_audits_energy_audit",
|
|
271
|
+
"energy_audits_earegistration_number",
|
|
272
|
+
"energy_audits_created_at",
|
|
273
|
+
"building_envelope_side_wall_prevailing_construction",
|
|
274
|
+
"building_envelope_side_wall_area",
|
|
275
|
+
"building_envelope_side_wall_heat_insulation",
|
|
276
|
+
"building_envelope_side_wall_year_of_adjustment",
|
|
277
|
+
"building_envelope_side_wall_technical_condition",
|
|
278
|
+
"building_envelope_filling_of_hole_construction",
|
|
279
|
+
"building_envelope_filling_of_hole_area",
|
|
280
|
+
"building_envelope_filling_of_hole_year_of_adjustment",
|
|
281
|
+
"building_envelope_filling_of_hole_technical_condition",
|
|
282
|
+
"building_envelope_roof_construction",
|
|
283
|
+
"building_envelope_roof_area",
|
|
284
|
+
"building_envelope_roof_thermal_insulation",
|
|
285
|
+
"building_envelope_roof_year_of_adjustment",
|
|
286
|
+
"building_envelope_roof_technical_condition",
|
|
287
|
+
"building_envelope_floor_of_the_lowest_heated_floor_construction",
|
|
288
|
+
"building_envelope_floor_of_the_lowest_heated_floor_area",
|
|
289
|
+
"floor_of_the_lowest_heated_floor_thermal_insulation",
|
|
290
|
+
"building_envelope_floor_of_the_lowest_heated_floor_year_of_adju",
|
|
291
|
+
"floor_of_the_lowest_heated_floor_technical_condition",
|
|
292
|
+
"fuel_and_energy_coal",
|
|
293
|
+
"fuel_and_energy_gas",
|
|
294
|
+
"fuel_and_energy_electricity",
|
|
295
|
+
"fuel_and_energy_czt",
|
|
296
|
+
"fuel_and_energy_oze",
|
|
297
|
+
"fuel_and_energy_other",
|
|
298
|
+
"technical_equipment_heating_main_source_of_heat",
|
|
299
|
+
"technical_equipment_heating_heat_percentage",
|
|
300
|
+
"technical_equipment_heating_secondary_source_of_heat",
|
|
301
|
+
"technical_equipment_heating_heating_system",
|
|
302
|
+
"technical_equipment_heating_year",
|
|
303
|
+
"technical_equipment_heating_technical_condition",
|
|
304
|
+
"technical_equipment_cooling_cooling_system",
|
|
305
|
+
"technical_equipment_cooling_cooling_area_percentage",
|
|
306
|
+
"technical_equipment_cooling_year",
|
|
307
|
+
"technical_equipment_cooling_technical_condition",
|
|
308
|
+
"technical_equipment_ventilation_ventilation",
|
|
309
|
+
"technical_equipment_ventilation_year",
|
|
310
|
+
"technical_equipment_ventilation_technical_condition",
|
|
311
|
+
"technical_equipment_humidity_adjustment_humidity_adjustment",
|
|
312
|
+
"technical_equipment_humidity_adjustment_year",
|
|
313
|
+
"technical_equipment_humidity_adjustment_technical_condition",
|
|
314
|
+
"technical_equipment_hot_water_predominant_way_of_heating_tv",
|
|
315
|
+
"technical_equipment_hot_water_hot_water_source",
|
|
316
|
+
"technical_equipment_hot_water_year",
|
|
317
|
+
"technical_equipment_hot_water_technical_condition",
|
|
318
|
+
"technical_equipment_lighting_lighting",
|
|
319
|
+
"technical_equipment_lighting_year",
|
|
320
|
+
"technical_equipment_lighting_technical_condition",
|
|
321
|
+
"technical_equipment_lighting_other_technological_elements",
|
|
322
|
+
"technical_equipment_lighting_measurement_method",
|
|
323
|
+
"oze_energy_production_solar_energy_photovoltaic",
|
|
324
|
+
"oze_energy_production_solar_energy_photothermal",
|
|
325
|
+
"oze_energy_production_integrated_turbines_wind_energy",
|
|
326
|
+
"oze_energy_production_heat_pump",
|
|
327
|
+
"waste_and_emissions_solid_waste_production",
|
|
328
|
+
"waste_and_emissions_tied_co2_emissions",
|
|
329
|
+
"waste_and_emissions_sox_emissions",
|
|
330
|
+
"waste_and_emissions_operating_co_2emissions",
|
|
331
|
+
],
|
|
332
|
+
},
|
|
333
|
+
definitions: {
|
|
334
|
+
// @ts-expect-error
|
|
335
|
+
geometry: schema_definitions_1.SharedSchemaProvider.Geometry,
|
|
336
|
+
},
|
|
337
|
+
};
|
|
338
|
+
//# sourceMappingURL=BuildingsSecondaryModel.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BuildingsSecondaryModel.js","sourceRoot":"","sources":["../../../src/output-gateway/models/BuildingsSecondaryModel.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IBuildingsTransformationOutput.js","sourceRoot":"","sources":["../../../../src/output-gateway/models/interfaces/IBuildingsTransformationOutput.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
import { IGeoCoordinatesPoint } from "@golemio/core/dist/output-gateway/Geo";
|
|
2
|
+
export interface IFullTransformationSchemaItem {
|
|
3
|
+
id: number;
|
|
4
|
+
name: string | null;
|
|
5
|
+
main_use: string | null;
|
|
6
|
+
method_of_protection: string | null;
|
|
7
|
+
address: {
|
|
8
|
+
city: string | null;
|
|
9
|
+
country: string | null;
|
|
10
|
+
house_number: string | null;
|
|
11
|
+
mail: string | null;
|
|
12
|
+
phone: string | null;
|
|
13
|
+
street: string | null;
|
|
14
|
+
web_address: string | null;
|
|
15
|
+
} | null;
|
|
16
|
+
allotment_number: string | null;
|
|
17
|
+
beds_count: number | null;
|
|
18
|
+
building_address_code: string | null;
|
|
19
|
+
building_envelope: {
|
|
20
|
+
filling_of_hole: {
|
|
21
|
+
area: number | null;
|
|
22
|
+
construction: string | null;
|
|
23
|
+
technical_condition: string | null;
|
|
24
|
+
year_of_adjustment: string | null;
|
|
25
|
+
} | null;
|
|
26
|
+
floor_of_the_lowest_heated_floor: {
|
|
27
|
+
area: number | null;
|
|
28
|
+
construction: string | null;
|
|
29
|
+
year_of_adjustment: string | null;
|
|
30
|
+
technical_condition: string | null;
|
|
31
|
+
thermal_insulation: string | null;
|
|
32
|
+
} | null;
|
|
33
|
+
roof: {
|
|
34
|
+
area: number | null;
|
|
35
|
+
construction: string | null;
|
|
36
|
+
technical_condition: string | null;
|
|
37
|
+
thermal_insulation: string | null;
|
|
38
|
+
year_of_adjustment: string | null;
|
|
39
|
+
} | null;
|
|
40
|
+
side_wall: {
|
|
41
|
+
area: number | null;
|
|
42
|
+
heat_insulation: string | null;
|
|
43
|
+
prevailing_construction: string | null;
|
|
44
|
+
technical_condition: string | null;
|
|
45
|
+
year_of_adjustment: string | null;
|
|
46
|
+
} | null;
|
|
47
|
+
} | null;
|
|
48
|
+
label: string | null;
|
|
49
|
+
built_up_area: number | null;
|
|
50
|
+
classrooms_count: number | null;
|
|
51
|
+
csu_code: string | null;
|
|
52
|
+
current_note: string | null;
|
|
53
|
+
description: string | null;
|
|
54
|
+
employees_count: number | null;
|
|
55
|
+
energetic_management: string | null;
|
|
56
|
+
energy_audits: {
|
|
57
|
+
created_at: string | null;
|
|
58
|
+
ea_registration_number: string | null;
|
|
59
|
+
energy_audit: string | null;
|
|
60
|
+
} | null;
|
|
61
|
+
eno_id: string | null;
|
|
62
|
+
fuel_and_energy: {
|
|
63
|
+
coal: boolean | null;
|
|
64
|
+
czt: boolean | null;
|
|
65
|
+
electricity: boolean | null;
|
|
66
|
+
gas: boolean | null;
|
|
67
|
+
other: boolean | null;
|
|
68
|
+
oze: boolean | null;
|
|
69
|
+
} | null;
|
|
70
|
+
heated_bulding_volume: number | null;
|
|
71
|
+
ku_code: string | null;
|
|
72
|
+
location: IGeoCoordinatesPoint | null;
|
|
73
|
+
link: string;
|
|
74
|
+
oze_energy_production: {
|
|
75
|
+
heat_pump: string | null;
|
|
76
|
+
integrated_turbines_wind_energy: string | null;
|
|
77
|
+
solar_energy_photothermal: string | null;
|
|
78
|
+
solar_energy_photovoltaic: string | null;
|
|
79
|
+
} | null;
|
|
80
|
+
penb: {
|
|
81
|
+
building_envelope: number | null;
|
|
82
|
+
building_envelope_category: string | null;
|
|
83
|
+
cooling: number | null;
|
|
84
|
+
cooling_category: string | null;
|
|
85
|
+
heating: number | null;
|
|
86
|
+
heating_category: string | null;
|
|
87
|
+
humidity_adjustment: number | null;
|
|
88
|
+
humidity_adjustment_category: string | null;
|
|
89
|
+
issue_date: string | null;
|
|
90
|
+
lighting: number | null;
|
|
91
|
+
lighting_category: string | null;
|
|
92
|
+
penb_number: number | null;
|
|
93
|
+
primary_non_renewable_energy: number | null;
|
|
94
|
+
primary_non_renewable_energy_category: string | null;
|
|
95
|
+
total_building_envelope_area: number | null;
|
|
96
|
+
total_energy_reference_area: number | null;
|
|
97
|
+
total_provided_energy: number | null;
|
|
98
|
+
total_provided_energy_category: string | null;
|
|
99
|
+
ventilation: number | null;
|
|
100
|
+
ventilation_category: string | null;
|
|
101
|
+
volume_factor_of_av_shape: string | null;
|
|
102
|
+
warm_water: number | null;
|
|
103
|
+
warm_water_category: string | null;
|
|
104
|
+
} | null;
|
|
105
|
+
registration_unit: string | null;
|
|
106
|
+
secondary_use: string | null;
|
|
107
|
+
students_count: number | null;
|
|
108
|
+
technical_equipment: {
|
|
109
|
+
cooling: {
|
|
110
|
+
cooling_area_percentage: number | null;
|
|
111
|
+
cooling_system: string | null;
|
|
112
|
+
technical_condition: string | null;
|
|
113
|
+
year: string | null;
|
|
114
|
+
} | null;
|
|
115
|
+
heating: {
|
|
116
|
+
heat_percentage: number | null;
|
|
117
|
+
heating_system: string | null;
|
|
118
|
+
main_source_of_heat: string | null;
|
|
119
|
+
secondary_source_of_heat: string | null;
|
|
120
|
+
technical_condition: string | null;
|
|
121
|
+
year: string | null;
|
|
122
|
+
} | null;
|
|
123
|
+
hot_water: {
|
|
124
|
+
hot_water_source: string | null;
|
|
125
|
+
predominant_way_of_heating_tv: string | null;
|
|
126
|
+
technical_condition: string | null;
|
|
127
|
+
year: string | null;
|
|
128
|
+
} | null;
|
|
129
|
+
humidity_adjustment: {
|
|
130
|
+
humidity_adjustment: string | null;
|
|
131
|
+
technical_condition: string | null;
|
|
132
|
+
year: string | null;
|
|
133
|
+
} | null;
|
|
134
|
+
lighting: {
|
|
135
|
+
lighting: string | null;
|
|
136
|
+
measurement_method: string | null;
|
|
137
|
+
other_technological_elements: string | null;
|
|
138
|
+
technical_condition: string | null;
|
|
139
|
+
year: string | null;
|
|
140
|
+
} | null;
|
|
141
|
+
ventilation: {
|
|
142
|
+
technical_condition: string | null;
|
|
143
|
+
ventilation: string | null;
|
|
144
|
+
year: string | null;
|
|
145
|
+
} | null;
|
|
146
|
+
} | null;
|
|
147
|
+
waste_and_emissions: {
|
|
148
|
+
operating_co2_emissions: string | null;
|
|
149
|
+
solid_waste_production: string | null;
|
|
150
|
+
sox_emissions: string | null;
|
|
151
|
+
tied_co2_emissions: string | null;
|
|
152
|
+
} | null;
|
|
153
|
+
weekend_opening_hours: string | null;
|
|
154
|
+
opening_hours: string | null;
|
|
155
|
+
year_of_construction: number | null;
|
|
156
|
+
}
|