@golemio/fcd 1.2.4 → 1.2.5-dev.1262829891
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/sql_dump.sql +7 -0
- package/db/migrations/postgresql/20240419120732-fcd-new-view.js +53 -0
- package/db/migrations/postgresql/sqls/20240419120732-fcd-new-view-down.sql +2 -0
- package/db/migrations/postgresql/sqls/20240419120732-fcd-new-view-up.sql +78 -0
- package/dist/integration-engine/index.d.ts +2 -2
- package/dist/integration-engine/index.js +3 -3
- package/dist/integration-engine/index.js.map +1 -1
- package/dist/integration-engine/ioc/Di.d.ts +3 -0
- package/dist/integration-engine/ioc/Di.js +29 -0
- package/dist/integration-engine/ioc/Di.js.map +1 -0
- package/dist/integration-engine/ioc/ModuleContainer.d.ts +10 -0
- package/dist/integration-engine/ioc/ModuleContainer.js +14 -0
- package/dist/integration-engine/ioc/ModuleContainer.js.map +1 -0
- package/dist/integration-engine/repositories/fcd/FloatingCarDataRegionsRepository.d.ts +6 -0
- package/dist/integration-engine/repositories/fcd/FloatingCarDataRegionsRepository.js +37 -0
- package/dist/integration-engine/repositories/fcd/FloatingCarDataRegionsRepository.js.map +1 -0
- package/dist/integration-engine/repositories/fcd/FloatingCarDataRepository.d.ts +6 -0
- package/dist/integration-engine/repositories/fcd/FloatingCarDataRepository.js +37 -0
- package/dist/integration-engine/repositories/fcd/FloatingCarDataRepository.js.map +1 -0
- package/dist/integration-engine/schemas/floatingCarData.d.ts +324 -0
- package/dist/integration-engine/schemas/floatingCarData.js +346 -0
- package/dist/integration-engine/schemas/floatingCarData.js.map +1 -0
- package/dist/integration-engine/transformations/FloatingCarDataTransformation.d.ts +2 -1
- package/dist/integration-engine/transformations/FloatingCarDataTransformation.js.map +1 -1
- package/dist/integration-engine/transformations/index.d.ts +2 -0
- package/dist/integration-engine/transformations/index.js +19 -0
- package/dist/integration-engine/transformations/index.js.map +1 -0
- package/dist/integration-engine/transformations/{FloatingCarDataInterface.d.ts → interfaces/FloatingCarDataInterface.d.ts} +2 -48
- package/dist/integration-engine/transformations/interfaces/FloatingCarDataInterface.js.map +1 -0
- package/dist/integration-engine/workers/FCDWorker.d.ts +7 -0
- package/dist/integration-engine/workers/FCDWorker.js +21 -0
- package/dist/integration-engine/workers/FCDWorker.js.map +1 -0
- package/dist/integration-engine/workers/index.d.ts +2 -0
- package/dist/integration-engine/workers/index.js +6 -0
- package/dist/integration-engine/workers/index.js.map +1 -0
- package/dist/integration-engine/workers/tasks/RegionsDataRetentionTask.d.ts +10 -0
- package/dist/integration-engine/workers/tasks/RegionsDataRetentionTask.js +59 -0
- package/dist/integration-engine/workers/tasks/RegionsDataRetentionTask.js.map +1 -0
- package/dist/integration-engine/workers/tasks/SaveFloatingCarDataTask.d.ts +13 -0
- package/dist/integration-engine/workers/tasks/SaveFloatingCarDataTask.js +62 -0
- package/dist/integration-engine/workers/tasks/SaveFloatingCarDataTask.js.map +1 -0
- package/dist/integration-engine/workers/tasks/SaveRegionsDataTask.d.ts +15 -0
- package/dist/integration-engine/workers/tasks/SaveRegionsDataTask.js +68 -0
- package/dist/integration-engine/workers/tasks/SaveRegionsDataTask.js.map +1 -0
- package/dist/integration-engine/workers/tasks/index.d.ts +3 -0
- package/dist/integration-engine/workers/tasks/index.js +20 -0
- package/dist/integration-engine/workers/tasks/index.js.map +1 -0
- package/dist/output-gateway/FCDRouter.d.ts +4 -2
- package/dist/output-gateway/FCDRouter.js +17 -7
- package/dist/output-gateway/FCDRouter.js.map +1 -1
- package/dist/output-gateway/models/FloatingCarDataModel.d.ts +1 -1
- package/dist/output-gateway/models/FloatingCarDataModel.js.map +1 -1
- package/dist/output-gateway/models/FloatingCarExtendedDataModel.d.ts +1 -1
- package/dist/output-gateway/models/FloatingCarExtendedDataModel.js.map +1 -1
- package/dist/output-gateway/models/FloatingCarWithOsmPathDataModel.d.ts +11 -0
- package/dist/output-gateway/models/FloatingCarWithOsmPathDataModel.js +54 -0
- package/dist/output-gateway/models/FloatingCarWithOsmPathDataModel.js.map +1 -0
- package/dist/output-gateway/models/FloatingCarWithOsmPathExtendedDataModel.d.ts +12 -0
- package/dist/output-gateway/models/FloatingCarWithOsmPathExtendedDataModel.js +61 -0
- package/dist/output-gateway/models/FloatingCarWithOsmPathExtendedDataModel.js.map +1 -0
- package/dist/output-gateway/models/index.d.ts +2 -0
- package/dist/output-gateway/models/index.js +2 -0
- package/dist/output-gateway/models/index.js.map +1 -1
- package/dist/output-gateway/transformations/OutputFloatingCarDataTransformation.d.ts +6 -5
- package/dist/output-gateway/transformations/OutputFloatingCarDataTransformation.js +42 -50
- package/dist/output-gateway/transformations/OutputFloatingCarDataTransformation.js.map +1 -1
- package/dist/output-gateway/transformations/interfaces/outputApiFloatingCarData.d.ts +13 -0
- package/dist/output-gateway/transformations/interfaces/outputApiFloatingCarData.js +3 -0
- package/dist/output-gateway/transformations/interfaces/outputApiFloatingCarData.js.map +1 -0
- package/dist/schema-definitions/index.js +1 -0
- package/dist/schema-definitions/index.js.map +1 -1
- package/dist/schema-definitions/interfaces/FloatingCarDataInterface.d.ts +38 -0
- package/dist/schema-definitions/interfaces/FloatingCarDataInterface.js +3 -0
- package/dist/schema-definitions/interfaces/FloatingCarDataInterface.js.map +1 -0
- package/dist/schema-definitions/schemas/fcd_output_schema.d.ts +1 -0
- package/dist/schema-definitions/schemas/fcd_output_schema.js +2 -1
- package/dist/schema-definitions/schemas/fcd_output_schema.js.map +1 -1
- package/docs/assets/db_schema.png +0 -0
- package/docs/assets/schemas/floating_car_data_rabbitmq_message.json +1954 -0
- package/docs/assets/schemas/floating_car_data_schema.xml +18255 -0
- package/docs/implementation_documentation.md +103 -0
- package/package.json +3 -3
- package/dist/integration-engine/FCDWorker.d.ts +0 -13
- package/dist/integration-engine/FCDWorker.js +0 -71
- package/dist/integration-engine/FCDWorker.js.map +0 -1
- package/dist/integration-engine/queueDefinitions.d.ts +0 -3
- package/dist/integration-engine/queueDefinitions.js +0 -46
- package/dist/integration-engine/queueDefinitions.js.map +0 -1
- package/dist/integration-engine/transformations/FloatingCarDataInterface.js.map +0 -1
- package/dist/output-gateway/transformations/getLocationPointsFromTsString.d.ts +0 -2
- package/dist/output-gateway/transformations/getLocationPointsFromTsString.js +0 -19
- package/dist/output-gateway/transformations/getLocationPointsFromTsString.js.map +0 -1
- /package/dist/integration-engine/transformations/{FloatingCarDataInterface.js → interfaces/FloatingCarDataInterface.js} +0 -0
package/db/example/sql_dump.sql
CHANGED
|
@@ -7,3 +7,10 @@ VALUES('2021-09-21 01:36:59.000', 'TS10127T19629', '2021-09-21 01:36:01.000', 'T
|
|
|
7
7
|
INSERT INTO fcd_traff_params_part
|
|
8
8
|
(publication_time, source_identification, measurement_or_calculation_time, predefined_location, version_of_predefined_location, traffic_level, queue_exists, queue_length, from_point, to_point, data_quality, input_values, average_vehicle_speed, travel_time, free_flow_travel_time, free_flow_speed, create_batch_id, created_at, created_by, update_batch_id, updated_at, updated_by)
|
|
9
9
|
VALUES('2021-09-21 01:36:59.000', 'TS10182T24828', '2021-09-21 01:36:01.000', 'TS10182T24828', 2, 'level1', false, NULL, NULL, NULL, 0.833, 3, 91, 87, 106, 76, NULL, '2021-10-18 11:01:16.534', NULL, NULL, '2021-10-18 11:01:16.534', NULL);
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
DELETE from traffic.rsd_tmc_osm_mapping;
|
|
13
|
+
|
|
14
|
+
INSERT INTO traffic.rsd_tmc_osm_mapping (lt_start,lt_end,osm_path) VALUES
|
|
15
|
+
(10125,10123,'[1837041102, 8418051939, 7881860434, 1837022954, 1837022956, 1837022966, 977504781, 8404188228, 5216395186, 2674815365, 977504746, 8402974140, 1017997574, 1017997516, 1017997560, 1017997515, 8403075909, 8403127730, 8403075911, 8403075912, 8403127735]'),
|
|
16
|
+
(10127,19629,'[29381030, 29403193, 338604070, 29381028, 338604072, 29403192, 2681371748, 1138616634, 2681371747, 308815174,1138624651, 29403191]');
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var dbm;
|
|
4
|
+
var type;
|
|
5
|
+
var seed;
|
|
6
|
+
var fs = require('fs');
|
|
7
|
+
var path = require('path');
|
|
8
|
+
var Promise;
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* We receive the dbmigrate dependency from dbmigrate initially.
|
|
12
|
+
* This enables us to not have to rely on NODE_PATH.
|
|
13
|
+
*/
|
|
14
|
+
exports.setup = function(options, seedLink) {
|
|
15
|
+
dbm = options.dbmigrate;
|
|
16
|
+
type = dbm.dataType;
|
|
17
|
+
seed = seedLink;
|
|
18
|
+
Promise = options.Promise;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
exports.up = function(db) {
|
|
22
|
+
var filePath = path.join(__dirname, 'sqls', '20240419120732-fcd-new-view-up.sql');
|
|
23
|
+
return new Promise( function( resolve, reject ) {
|
|
24
|
+
fs.readFile(filePath, {encoding: 'utf-8'}, function(err,data){
|
|
25
|
+
if (err) return reject(err);
|
|
26
|
+
console.log('received data: ' + data);
|
|
27
|
+
|
|
28
|
+
resolve(data);
|
|
29
|
+
});
|
|
30
|
+
})
|
|
31
|
+
.then(function(data) {
|
|
32
|
+
return db.runSql(data);
|
|
33
|
+
});
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
exports.down = function(db) {
|
|
37
|
+
var filePath = path.join(__dirname, 'sqls', '20240419120732-fcd-new-view-down.sql');
|
|
38
|
+
return new Promise( function( resolve, reject ) {
|
|
39
|
+
fs.readFile(filePath, {encoding: 'utf-8'}, function(err,data){
|
|
40
|
+
if (err) return reject(err);
|
|
41
|
+
console.log('received data: ' + data);
|
|
42
|
+
|
|
43
|
+
resolve(data);
|
|
44
|
+
});
|
|
45
|
+
})
|
|
46
|
+
.then(function(data) {
|
|
47
|
+
return db.runSql(data);
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
exports._meta = {
|
|
52
|
+
"version": 1
|
|
53
|
+
};
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
CREATE OR REPLACE VIEW v_traffic_params_all_with_osm_path
|
|
2
|
+
AS SELECT t.queue_exists,
|
|
3
|
+
t.queue_length,
|
|
4
|
+
t.from_point,
|
|
5
|
+
t.to_point,
|
|
6
|
+
rtom.osm_path,
|
|
7
|
+
t.source_identification,
|
|
8
|
+
t.data_quality,
|
|
9
|
+
t.input_values,
|
|
10
|
+
t.predefined_location,
|
|
11
|
+
t.average_vehicle_speed,
|
|
12
|
+
t.travel_time,
|
|
13
|
+
t.free_flow_travel_time,
|
|
14
|
+
t.free_flow_speed,
|
|
15
|
+
t.measurement_or_calculation_time,
|
|
16
|
+
t.publication_time,
|
|
17
|
+
t.version_of_predefined_location,
|
|
18
|
+
t.traffic_level
|
|
19
|
+
FROM ( SELECT v_traffic_params_all.publication_time,
|
|
20
|
+
v_traffic_params_all.source_identification,
|
|
21
|
+
v_traffic_params_all.measurement_or_calculation_time,
|
|
22
|
+
v_traffic_params_all.predefined_location,
|
|
23
|
+
v_traffic_params_all.version_of_predefined_location,
|
|
24
|
+
v_traffic_params_all.traffic_level,
|
|
25
|
+
v_traffic_params_all.queue_exists,
|
|
26
|
+
v_traffic_params_all.queue_length,
|
|
27
|
+
v_traffic_params_all.from_point,
|
|
28
|
+
v_traffic_params_all.to_point,
|
|
29
|
+
v_traffic_params_all.data_quality,
|
|
30
|
+
v_traffic_params_all.input_values,
|
|
31
|
+
v_traffic_params_all.average_vehicle_speed,
|
|
32
|
+
v_traffic_params_all.travel_time,
|
|
33
|
+
v_traffic_params_all.free_flow_travel_time,
|
|
34
|
+
v_traffic_params_all.free_flow_speed,
|
|
35
|
+
regexp_split_to_array(v_traffic_params_all.source_identification::text, '(TS|T)'::text) AS i
|
|
36
|
+
FROM v_traffic_params_all)t
|
|
37
|
+
LEFT JOIN traffic.rsd_tmc_osm_mapping rtom ON rtom.lt_start = t.i[2]::integer AND rtom.lt_end = t.i[3]::integer;
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
CREATE OR REPLACE VIEW v_traffic_params_last_hour_osm_path
|
|
43
|
+
AS SELECT t.queue_exists,
|
|
44
|
+
t.queue_length,
|
|
45
|
+
t.from_point,
|
|
46
|
+
t.to_point,
|
|
47
|
+
rtom.osm_path,
|
|
48
|
+
t.source_identification,
|
|
49
|
+
t.data_quality,
|
|
50
|
+
t.input_values,
|
|
51
|
+
t.predefined_location,
|
|
52
|
+
t.average_vehicle_speed,
|
|
53
|
+
t.travel_time,
|
|
54
|
+
t.free_flow_travel_time,
|
|
55
|
+
t.free_flow_speed,
|
|
56
|
+
t.measurement_or_calculation_time,
|
|
57
|
+
t.publication_time,
|
|
58
|
+
t.version_of_predefined_location,
|
|
59
|
+
t.traffic_level
|
|
60
|
+
FROM ( SELECT v_traffic_params_last_hour.publication_time,
|
|
61
|
+
v_traffic_params_last_hour.source_identification,
|
|
62
|
+
v_traffic_params_last_hour.measurement_or_calculation_time,
|
|
63
|
+
v_traffic_params_last_hour.predefined_location,
|
|
64
|
+
v_traffic_params_last_hour.version_of_predefined_location,
|
|
65
|
+
v_traffic_params_last_hour.traffic_level,
|
|
66
|
+
v_traffic_params_last_hour.queue_exists,
|
|
67
|
+
v_traffic_params_last_hour.queue_length,
|
|
68
|
+
v_traffic_params_last_hour.from_point,
|
|
69
|
+
v_traffic_params_last_hour.to_point,
|
|
70
|
+
v_traffic_params_last_hour.data_quality,
|
|
71
|
+
v_traffic_params_last_hour.input_values,
|
|
72
|
+
v_traffic_params_last_hour.average_vehicle_speed,
|
|
73
|
+
v_traffic_params_last_hour.travel_time,
|
|
74
|
+
v_traffic_params_last_hour.free_flow_travel_time,
|
|
75
|
+
v_traffic_params_last_hour.free_flow_speed,
|
|
76
|
+
regexp_split_to_array(v_traffic_params_last_hour.source_identification::text, '(TS|T)'::text) AS i
|
|
77
|
+
FROM v_traffic_params_last_hour)t
|
|
78
|
+
LEFT JOIN traffic.rsd_tmc_osm_mapping rtom ON rtom.lt_start = t.i[2]::integer AND rtom.lt_end = t.i[3]::integer;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./
|
|
2
|
-
export * from "./
|
|
1
|
+
export * from "./workers";
|
|
2
|
+
export * from "./transformations";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
/* ie/index.ts */
|
|
2
3
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
4
|
if (k2 === undefined) k2 = k;
|
|
4
5
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -14,7 +15,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
15
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
16
|
};
|
|
16
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
|
|
18
|
-
__exportStar(require("./
|
|
19
|
-
__exportStar(require("./queueDefinitions"), exports);
|
|
18
|
+
__exportStar(require("./workers"), exports);
|
|
19
|
+
__exportStar(require("./transformations"), exports);
|
|
20
20
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/integration-engine/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/integration-engine/index.ts"],"names":[],"mappings":";AAAA,iBAAiB;;;;;;;;;;;;;;;;AAEjB,4CAA0B;AAC1B,oDAAkC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FCDContainer = void 0;
|
|
4
|
+
const Di_1 = require("@golemio/core/dist/integration-engine/ioc/Di");
|
|
5
|
+
const transformations_1 = require("../transformations");
|
|
6
|
+
const LteCze90PointsChecker_1 = require("../helpers/LteCze90PointsChecker");
|
|
7
|
+
const ModuleContainer_1 = require("./ModuleContainer");
|
|
8
|
+
const FloatingCarDataRegionsRepository_1 = require("../repositories/fcd/FloatingCarDataRegionsRepository");
|
|
9
|
+
const FloatingCarDataRepository_1 = require("../repositories/fcd/FloatingCarDataRepository");
|
|
10
|
+
const tasks_1 = require("../workers/tasks");
|
|
11
|
+
//#region Initialization
|
|
12
|
+
const FCDContainer = Di_1.IntegrationEngineContainer.createChildContainer();
|
|
13
|
+
exports.FCDContainer = FCDContainer;
|
|
14
|
+
//#endregion
|
|
15
|
+
//#region Repositories
|
|
16
|
+
FCDContainer.register(ModuleContainer_1.ModuleContainerToken.FloatingCarDataRegionsRepository, FloatingCarDataRegionsRepository_1.FloatingCarDataRegionsRepository);
|
|
17
|
+
FCDContainer.register(ModuleContainer_1.ModuleContainerToken.FloatingCarDataRepository, FloatingCarDataRepository_1.FloatingCarDataRepository);
|
|
18
|
+
//#endregion
|
|
19
|
+
//#region Transformations
|
|
20
|
+
FCDContainer.register(ModuleContainer_1.ModuleContainerToken.FloatingCarDataTransformation, transformations_1.FloatingCarDataTransformation);
|
|
21
|
+
//#endregion
|
|
22
|
+
//#region Tasks
|
|
23
|
+
FCDContainer.register(ModuleContainer_1.ModuleContainerToken.RegionsDataRetentionTask, tasks_1.RegionsDataRetentionTask);
|
|
24
|
+
FCDContainer.register(ModuleContainer_1.ModuleContainerToken.SaveFloatingCarDataTask, tasks_1.SaveFloatingCarDataTask);
|
|
25
|
+
FCDContainer.register(ModuleContainer_1.ModuleContainerToken.SaveRegionsDataTask, tasks_1.SaveRegionsDataTask);
|
|
26
|
+
//#endregion
|
|
27
|
+
//#region Helpers
|
|
28
|
+
FCDContainer.register(ModuleContainer_1.ModuleContainerToken.lteCze90PointsChecker, LteCze90PointsChecker_1.LteCze90PointsChecker);
|
|
29
|
+
//# sourceMappingURL=Di.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Di.js","sourceRoot":"","sources":["../../../src/integration-engine/ioc/Di.ts"],"names":[],"mappings":";;;AAAA,qEAA0F;AAE1F,wDAAoE;AACpE,4EAA0E;AAC1E,uDAAyD;AACzD,2GAAyG;AACzG,6FAA2F;AAC3F,4CAA2G;AAE3G,wBAAwB;AACxB,MAAM,YAAY,GAAwB,+BAA0B,CAAC,oBAAoB,EAAE,CAAC;AAsBnF,oCAAY;AArBrB,YAAY;AAEZ,sBAAsB;AACtB,YAAY,CAAC,QAAQ,CAAC,sCAAoB,CAAC,gCAAgC,EAAE,mEAAgC,CAAC,CAAC;AAC/G,YAAY,CAAC,QAAQ,CAAC,sCAAoB,CAAC,yBAAyB,EAAE,qDAAyB,CAAC,CAAC;AACjG,YAAY;AAEZ,yBAAyB;AACzB,YAAY,CAAC,QAAQ,CAAC,sCAAoB,CAAC,6BAA6B,EAAE,+CAA6B,CAAC,CAAC;AACzG,YAAY;AAEZ,eAAe;AACf,YAAY,CAAC,QAAQ,CAAC,sCAAoB,CAAC,wBAAwB,EAAE,gCAAwB,CAAC,CAAC;AAC/F,YAAY,CAAC,QAAQ,CAAC,sCAAoB,CAAC,uBAAuB,EAAE,+BAAuB,CAAC,CAAC;AAC7F,YAAY,CAAC,QAAQ,CAAC,sCAAoB,CAAC,mBAAmB,EAAE,2BAAmB,CAAC,CAAC;AACrF,YAAY;AAEZ,iBAAiB;AACjB,YAAY,CAAC,QAAQ,CAAC,sCAAoB,CAAC,qBAAqB,EAAE,6CAAqB,CAAC,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare const ModuleContainerToken: {
|
|
2
|
+
FloatingCarDataTransformation: symbol;
|
|
3
|
+
SaveFloatingCarDataTask: symbol;
|
|
4
|
+
SaveRegionsDataTask: symbol;
|
|
5
|
+
RegionsDataRetentionTask: symbol;
|
|
6
|
+
FloatingCarDataRegionsRepository: symbol;
|
|
7
|
+
FloatingCarDataRepository: symbol;
|
|
8
|
+
lteCze90PointsChecker: symbol;
|
|
9
|
+
};
|
|
10
|
+
export { ModuleContainerToken };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ModuleContainerToken = void 0;
|
|
4
|
+
const ModuleContainerToken = {
|
|
5
|
+
FloatingCarDataTransformation: Symbol(),
|
|
6
|
+
SaveFloatingCarDataTask: Symbol(),
|
|
7
|
+
SaveRegionsDataTask: Symbol(),
|
|
8
|
+
RegionsDataRetentionTask: Symbol(),
|
|
9
|
+
FloatingCarDataRegionsRepository: Symbol(),
|
|
10
|
+
FloatingCarDataRepository: Symbol(),
|
|
11
|
+
lteCze90PointsChecker: Symbol(),
|
|
12
|
+
};
|
|
13
|
+
exports.ModuleContainerToken = ModuleContainerToken;
|
|
14
|
+
//# sourceMappingURL=ModuleContainer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ModuleContainer.js","sourceRoot":"","sources":["../../../src/integration-engine/ioc/ModuleContainer.ts"],"names":[],"mappings":";;;AAAA,MAAM,oBAAoB,GAAG;IACzB,6BAA6B,EAAE,MAAM,EAAE;IACvC,uBAAuB,EAAE,MAAM,EAAE;IACjC,mBAAmB,EAAE,MAAM,EAAE;IAC7B,wBAAwB,EAAE,MAAM,EAAE;IAClC,gCAAgC,EAAE,MAAM,EAAE;IAC1C,yBAAyB,EAAE,MAAM,EAAE;IACnC,qBAAqB,EAAE,MAAM,EAAE;CAClC,CAAC;AAEO,oDAAoB"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IDatabaseConnector } from "@golemio/core/dist/helpers/data-access/postgres/IDatabaseConnector";
|
|
2
|
+
import { IModel, PostgresModel } from "@golemio/core/dist/integration-engine";
|
|
3
|
+
export declare class FloatingCarDataRegionsRepository extends PostgresModel implements IModel {
|
|
4
|
+
private databaseConnector;
|
|
5
|
+
constructor(databaseConnector: IDatabaseConnector);
|
|
6
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
+
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.FloatingCarDataRegionsRepository = void 0;
|
|
16
|
+
const _sch_1 = require("../../../schema-definitions");
|
|
17
|
+
const CoreToken_1 = require("@golemio/core/dist/helpers/ioc/CoreToken");
|
|
18
|
+
const integration_engine_1 = require("@golemio/core/dist/integration-engine");
|
|
19
|
+
const golemio_validator_1 = require("@golemio/core/dist/shared/golemio-validator");
|
|
20
|
+
const tsyringe_1 = require("@golemio/core/dist/shared/tsyringe");
|
|
21
|
+
let FloatingCarDataRegionsRepository = exports.FloatingCarDataRegionsRepository = class FloatingCarDataRegionsRepository extends integration_engine_1.PostgresModel {
|
|
22
|
+
constructor(databaseConnector) {
|
|
23
|
+
super(_sch_1.FCD.fcd_info.name + "Model", {
|
|
24
|
+
outputSequelizeAttributes: _sch_1.FCD.fcd_info.outputSequelizeAttributes,
|
|
25
|
+
pgSchema: _sch_1.FCD.pgSchema,
|
|
26
|
+
pgTableName: "fcd_traff_params_regions",
|
|
27
|
+
savingType: "insertOnly",
|
|
28
|
+
}, new golemio_validator_1.JSONSchemaValidator(_sch_1.FCD.fcd_info.name + "PgModelValidator", _sch_1.FCD.fcd_info.outputSchema));
|
|
29
|
+
this.databaseConnector = databaseConnector;
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
exports.FloatingCarDataRegionsRepository = FloatingCarDataRegionsRepository = __decorate([
|
|
33
|
+
(0, tsyringe_1.injectable)(),
|
|
34
|
+
__param(0, (0, tsyringe_1.inject)(CoreToken_1.CoreToken.PostgresConnector)),
|
|
35
|
+
__metadata("design:paramtypes", [Object])
|
|
36
|
+
], FloatingCarDataRegionsRepository);
|
|
37
|
+
//# sourceMappingURL=FloatingCarDataRegionsRepository.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FloatingCarDataRegionsRepository.js","sourceRoot":"","sources":["../../../../src/integration-engine/repositories/fcd/FloatingCarDataRegionsRepository.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,sDAA2B;AAE3B,wEAAqE;AACrE,8EAA8E;AAC9E,mFAAkF;AAClF,iEAAwE;AAGjE,IAAM,gCAAgC,8CAAtC,MAAM,gCAAiC,SAAQ,kCAAa;IAC/D,YAAyD,iBAAqC;QAC1F,KAAK,CACD,UAAG,CAAC,QAAQ,CAAC,IAAI,GAAG,OAAO,EAC3B;YACI,yBAAyB,EAAE,UAAG,CAAC,QAAQ,CAAC,yBAAyB;YACjE,QAAQ,EAAE,UAAG,CAAC,QAAQ;YACtB,WAAW,EAAE,0BAA0B;YACvC,UAAU,EAAE,YAAY;SAC3B,EACD,IAAI,uCAAmB,CAAC,UAAG,CAAC,QAAQ,CAAC,IAAI,GAAG,kBAAkB,EAAE,UAAG,CAAC,QAAQ,CAAC,YAAY,CAAC,CAC7F,CAAC;QAVmD,sBAAiB,GAAjB,iBAAiB,CAAoB;IAW9F,CAAC;CACJ,CAAA;2CAbY,gCAAgC;IAD5C,IAAA,qBAAU,GAAE;IAEI,WAAA,IAAA,iBAAM,EAAC,qBAAS,CAAC,iBAAiB,CAAC,CAAA;;GADvC,gCAAgC,CAa5C"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IDatabaseConnector } from "@golemio/core/dist/helpers/data-access/postgres/IDatabaseConnector";
|
|
2
|
+
import { IModel, PostgresModel } from "@golemio/core/dist/integration-engine";
|
|
3
|
+
export declare class FloatingCarDataRepository extends PostgresModel implements IModel {
|
|
4
|
+
private databaseConnector;
|
|
5
|
+
constructor(databaseConnector: IDatabaseConnector);
|
|
6
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
+
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.FloatingCarDataRepository = void 0;
|
|
16
|
+
const _sch_1 = require("../../../schema-definitions");
|
|
17
|
+
const CoreToken_1 = require("@golemio/core/dist/helpers/ioc/CoreToken");
|
|
18
|
+
const integration_engine_1 = require("@golemio/core/dist/integration-engine");
|
|
19
|
+
const golemio_validator_1 = require("@golemio/core/dist/shared/golemio-validator");
|
|
20
|
+
const tsyringe_1 = require("@golemio/core/dist/shared/tsyringe");
|
|
21
|
+
let FloatingCarDataRepository = exports.FloatingCarDataRepository = class FloatingCarDataRepository extends integration_engine_1.PostgresModel {
|
|
22
|
+
constructor(databaseConnector) {
|
|
23
|
+
super(_sch_1.FCD.fcd_info.name + "Model", {
|
|
24
|
+
outputSequelizeAttributes: _sch_1.FCD.fcd_info.outputSequelizeAttributes,
|
|
25
|
+
pgSchema: _sch_1.FCD.pgSchema,
|
|
26
|
+
pgTableName: _sch_1.FCD.fcd_info.pgTableName,
|
|
27
|
+
savingType: "insertOnly",
|
|
28
|
+
}, new golemio_validator_1.JSONSchemaValidator(_sch_1.FCD.fcd_info.name + "PgModelValidator", _sch_1.FCD.fcd_info.outputSchema));
|
|
29
|
+
this.databaseConnector = databaseConnector;
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
exports.FloatingCarDataRepository = FloatingCarDataRepository = __decorate([
|
|
33
|
+
(0, tsyringe_1.injectable)(),
|
|
34
|
+
__param(0, (0, tsyringe_1.inject)(CoreToken_1.CoreToken.PostgresConnector)),
|
|
35
|
+
__metadata("design:paramtypes", [Object])
|
|
36
|
+
], FloatingCarDataRepository);
|
|
37
|
+
//# sourceMappingURL=FloatingCarDataRepository.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FloatingCarDataRepository.js","sourceRoot":"","sources":["../../../../src/integration-engine/repositories/fcd/FloatingCarDataRepository.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,sDAA2B;AAE3B,wEAAqE;AACrE,8EAA8E;AAC9E,mFAAkF;AAClF,iEAAwE;AAGjE,IAAM,yBAAyB,uCAA/B,MAAM,yBAA0B,SAAQ,kCAAa;IACxD,YAAyD,iBAAqC;QAC1F,KAAK,CACD,UAAG,CAAC,QAAQ,CAAC,IAAI,GAAG,OAAO,EAC3B;YACI,yBAAyB,EAAE,UAAG,CAAC,QAAQ,CAAC,yBAAyB;YACjE,QAAQ,EAAE,UAAG,CAAC,QAAQ;YACtB,WAAW,EAAE,UAAG,CAAC,QAAQ,CAAC,WAAW;YACrC,UAAU,EAAE,YAAY;SAC3B,EACD,IAAI,uCAAmB,CAAC,UAAG,CAAC,QAAQ,CAAC,IAAI,GAAG,kBAAkB,EAAE,UAAG,CAAC,QAAQ,CAAC,YAAY,CAAC,CAC7F,CAAC;QAVmD,sBAAiB,GAAjB,iBAAiB,CAAoB;IAW9F,CAAC;CACJ,CAAA;oCAbY,yBAAyB;IADrC,IAAA,qBAAU,GAAE;IAEI,WAAA,IAAA,iBAAM,EAAC,qBAAS,CAAC,iBAAiB,CAAC,CAAA;;GADvC,yBAAyB,CAarC"}
|
|
@@ -0,0 +1,324 @@
|
|
|
1
|
+
import { IFloatingCarData } from "../transformations";
|
|
2
|
+
export declare const floatingCarDataJsonSchema: {
|
|
3
|
+
type: string;
|
|
4
|
+
properties: Record<keyof IFloatingCarData, any>;
|
|
5
|
+
required: string[];
|
|
6
|
+
additionalProperties: boolean;
|
|
7
|
+
definitions: {
|
|
8
|
+
Exchange: {
|
|
9
|
+
type: string;
|
|
10
|
+
properties: {
|
|
11
|
+
supplierIdentification: {
|
|
12
|
+
$ref: string;
|
|
13
|
+
};
|
|
14
|
+
exchangeExtension: {
|
|
15
|
+
$ref: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
required: string[];
|
|
19
|
+
};
|
|
20
|
+
_ExtensionType: {
|
|
21
|
+
type: string;
|
|
22
|
+
};
|
|
23
|
+
InternationalIdentifier: {
|
|
24
|
+
type: string;
|
|
25
|
+
properties: {
|
|
26
|
+
country: {
|
|
27
|
+
type: string;
|
|
28
|
+
};
|
|
29
|
+
nationalIdentifier: {
|
|
30
|
+
type: string;
|
|
31
|
+
};
|
|
32
|
+
internationalIdentifierExtension: {
|
|
33
|
+
$ref: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
required: string[];
|
|
37
|
+
additionalProperties: boolean;
|
|
38
|
+
};
|
|
39
|
+
PayloadPublication: {
|
|
40
|
+
type: string;
|
|
41
|
+
properties: {
|
|
42
|
+
$: {
|
|
43
|
+
type: string;
|
|
44
|
+
properties: {
|
|
45
|
+
"xsi:type": {
|
|
46
|
+
type: string;
|
|
47
|
+
enum: string[];
|
|
48
|
+
};
|
|
49
|
+
lang: {
|
|
50
|
+
type: string;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
required: string[];
|
|
54
|
+
additionalProperties: boolean;
|
|
55
|
+
};
|
|
56
|
+
publicationTime: {
|
|
57
|
+
$ref: string;
|
|
58
|
+
};
|
|
59
|
+
publicationCreator: {
|
|
60
|
+
$ref: string;
|
|
61
|
+
};
|
|
62
|
+
headerInformation: {
|
|
63
|
+
$ref: string;
|
|
64
|
+
};
|
|
65
|
+
elaboratedData: {
|
|
66
|
+
items: {
|
|
67
|
+
$ref: string;
|
|
68
|
+
};
|
|
69
|
+
type: string;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
required: string[];
|
|
73
|
+
additionalProperties: boolean;
|
|
74
|
+
};
|
|
75
|
+
DateTime: {
|
|
76
|
+
type: string;
|
|
77
|
+
format: string;
|
|
78
|
+
};
|
|
79
|
+
HeaderInformation: {
|
|
80
|
+
type: string;
|
|
81
|
+
properties: {
|
|
82
|
+
confidentiality: {
|
|
83
|
+
type: string;
|
|
84
|
+
};
|
|
85
|
+
informationStatus: {
|
|
86
|
+
type: string;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
ElaboratedData: {
|
|
91
|
+
type: string;
|
|
92
|
+
properties: {
|
|
93
|
+
source: {
|
|
94
|
+
type: string;
|
|
95
|
+
properties: {
|
|
96
|
+
sourceIdentification: {
|
|
97
|
+
type: string;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
basicData: {
|
|
102
|
+
$ref: string;
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
BasicData: {
|
|
107
|
+
type: string;
|
|
108
|
+
properties: {
|
|
109
|
+
$: {
|
|
110
|
+
type: string;
|
|
111
|
+
properties: {
|
|
112
|
+
"xsi:type": {
|
|
113
|
+
type: string;
|
|
114
|
+
enum: string[];
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
required: string[];
|
|
118
|
+
additionalProperties: boolean;
|
|
119
|
+
};
|
|
120
|
+
measurementOrCalculationTime: {
|
|
121
|
+
type: string;
|
|
122
|
+
};
|
|
123
|
+
pertinentLocation: {
|
|
124
|
+
$ref: string;
|
|
125
|
+
};
|
|
126
|
+
trafficStatusExtension: {
|
|
127
|
+
$ref: string;
|
|
128
|
+
};
|
|
129
|
+
travelTime: {
|
|
130
|
+
$ref: string;
|
|
131
|
+
};
|
|
132
|
+
freeFlowTravelTime: {
|
|
133
|
+
$ref: string;
|
|
134
|
+
};
|
|
135
|
+
freeFlowSpeed: {
|
|
136
|
+
$ref: string;
|
|
137
|
+
};
|
|
138
|
+
averageVehicleSpeed: {
|
|
139
|
+
$ref: string;
|
|
140
|
+
};
|
|
141
|
+
};
|
|
142
|
+
required: string[];
|
|
143
|
+
additionalProperties: boolean;
|
|
144
|
+
};
|
|
145
|
+
PertinentLocation: {
|
|
146
|
+
type: string;
|
|
147
|
+
properties: {
|
|
148
|
+
$: {
|
|
149
|
+
type: string;
|
|
150
|
+
properties: {
|
|
151
|
+
"xsi:type": {
|
|
152
|
+
type: string;
|
|
153
|
+
enum: string[];
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
required: string[];
|
|
157
|
+
};
|
|
158
|
+
predefinedLocationReference: {
|
|
159
|
+
type: string;
|
|
160
|
+
properties: {
|
|
161
|
+
$: {
|
|
162
|
+
type: string;
|
|
163
|
+
properties: {
|
|
164
|
+
targetClass: {
|
|
165
|
+
type: string;
|
|
166
|
+
};
|
|
167
|
+
id: {
|
|
168
|
+
type: string;
|
|
169
|
+
};
|
|
170
|
+
version: {
|
|
171
|
+
type: string;
|
|
172
|
+
};
|
|
173
|
+
};
|
|
174
|
+
required: string[];
|
|
175
|
+
};
|
|
176
|
+
};
|
|
177
|
+
required: string[];
|
|
178
|
+
};
|
|
179
|
+
};
|
|
180
|
+
required: string[];
|
|
181
|
+
};
|
|
182
|
+
TrafficStatusExtension: {
|
|
183
|
+
type: string;
|
|
184
|
+
properties: {
|
|
185
|
+
ndicFcdExtension: {
|
|
186
|
+
type: string;
|
|
187
|
+
properties: {
|
|
188
|
+
trafficLevel: {
|
|
189
|
+
type: string;
|
|
190
|
+
properties: {
|
|
191
|
+
$: {
|
|
192
|
+
type: string;
|
|
193
|
+
properties: {
|
|
194
|
+
supplierCalculatedDataQuality: {
|
|
195
|
+
type: string;
|
|
196
|
+
};
|
|
197
|
+
numberOfInputValuesUsed: {
|
|
198
|
+
type: string;
|
|
199
|
+
};
|
|
200
|
+
};
|
|
201
|
+
required: string[];
|
|
202
|
+
};
|
|
203
|
+
trafficLevelValue: {
|
|
204
|
+
type: string;
|
|
205
|
+
};
|
|
206
|
+
};
|
|
207
|
+
required: string[];
|
|
208
|
+
};
|
|
209
|
+
};
|
|
210
|
+
required: string[];
|
|
211
|
+
};
|
|
212
|
+
queueInformation: {
|
|
213
|
+
type: string;
|
|
214
|
+
properties: {
|
|
215
|
+
queueLength: {
|
|
216
|
+
type: string;
|
|
217
|
+
};
|
|
218
|
+
fromPoint: {
|
|
219
|
+
type: string;
|
|
220
|
+
};
|
|
221
|
+
toPoint: {
|
|
222
|
+
type: string;
|
|
223
|
+
};
|
|
224
|
+
};
|
|
225
|
+
required: string[];
|
|
226
|
+
};
|
|
227
|
+
};
|
|
228
|
+
required: string[];
|
|
229
|
+
additionalProperties: boolean;
|
|
230
|
+
};
|
|
231
|
+
TravelTime: {
|
|
232
|
+
type: string;
|
|
233
|
+
properties: {
|
|
234
|
+
$: {
|
|
235
|
+
type: string;
|
|
236
|
+
properties: {
|
|
237
|
+
supplierCalculatedDataQuality: {
|
|
238
|
+
type: string;
|
|
239
|
+
};
|
|
240
|
+
numberOfInputValuesUsed: {
|
|
241
|
+
type: string;
|
|
242
|
+
};
|
|
243
|
+
};
|
|
244
|
+
required: string[];
|
|
245
|
+
additionalProperties: boolean;
|
|
246
|
+
};
|
|
247
|
+
duration: {
|
|
248
|
+
type: string;
|
|
249
|
+
};
|
|
250
|
+
};
|
|
251
|
+
required: string[];
|
|
252
|
+
additionalProperties: boolean;
|
|
253
|
+
};
|
|
254
|
+
FreeFlowTravelTime: {
|
|
255
|
+
type: string;
|
|
256
|
+
properties: {
|
|
257
|
+
$: {
|
|
258
|
+
type: string;
|
|
259
|
+
properties: {
|
|
260
|
+
supplierCalculatedDataQuality: {
|
|
261
|
+
type: string;
|
|
262
|
+
};
|
|
263
|
+
numberOfInputValuesUsed: {
|
|
264
|
+
type: string;
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
required: string[];
|
|
268
|
+
additionalProperties: boolean;
|
|
269
|
+
};
|
|
270
|
+
duration: {
|
|
271
|
+
type: string;
|
|
272
|
+
};
|
|
273
|
+
};
|
|
274
|
+
required: string[];
|
|
275
|
+
additionalProperties: boolean;
|
|
276
|
+
};
|
|
277
|
+
FreeFlowSpeed: {
|
|
278
|
+
type: string;
|
|
279
|
+
properties: {
|
|
280
|
+
$: {
|
|
281
|
+
type: string;
|
|
282
|
+
properties: {
|
|
283
|
+
supplierCalculatedDataQuality: {
|
|
284
|
+
type: string;
|
|
285
|
+
};
|
|
286
|
+
numberOfInputValuesUsed: {
|
|
287
|
+
type: string;
|
|
288
|
+
};
|
|
289
|
+
};
|
|
290
|
+
required: string[];
|
|
291
|
+
additionalProperties: boolean;
|
|
292
|
+
};
|
|
293
|
+
speed: {
|
|
294
|
+
type: string;
|
|
295
|
+
};
|
|
296
|
+
};
|
|
297
|
+
required: string[];
|
|
298
|
+
additionalProperties: boolean;
|
|
299
|
+
};
|
|
300
|
+
AverageVehicleSpeed: {
|
|
301
|
+
type: string;
|
|
302
|
+
properties: {
|
|
303
|
+
$: {
|
|
304
|
+
type: string;
|
|
305
|
+
properties: {
|
|
306
|
+
supplierCalculatedDataQuality: {
|
|
307
|
+
type: string;
|
|
308
|
+
};
|
|
309
|
+
numberOfInputValuesUsed: {
|
|
310
|
+
type: string;
|
|
311
|
+
};
|
|
312
|
+
};
|
|
313
|
+
required: string[];
|
|
314
|
+
additionalProperties: boolean;
|
|
315
|
+
};
|
|
316
|
+
speed: {
|
|
317
|
+
type: string;
|
|
318
|
+
};
|
|
319
|
+
};
|
|
320
|
+
required: string[];
|
|
321
|
+
additionalProperties: boolean;
|
|
322
|
+
};
|
|
323
|
+
};
|
|
324
|
+
};
|