cognite-neat 0.75.8__py3-none-any.whl → 0.75.9__py3-none-any.whl
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.
Potentially problematic release.
This version of cognite-neat might be problematic. Click here for more details.
- cognite/neat/_version.py +1 -1
- cognite/neat/app/api/configuration.py +4 -9
- cognite/neat/app/api/routers/configuration.py +2 -1
- cognite/neat/app/api/routers/crud.py +5 -5
- cognite/neat/app/api/routers/data_exploration.py +3 -1
- cognite/neat/app/api/routers/rules.py +3 -3
- cognite/neat/app/api/routers/workflows.py +3 -3
- cognite/neat/app/ui/neat-app/build/asset-manifest.json +3 -3
- cognite/neat/app/ui/neat-app/build/index.html +1 -1
- cognite/neat/app/ui/neat-app/build/static/js/{main.4345d42f.js → main.ec7f72e2.js} +3 -3
- cognite/neat/app/ui/neat-app/build/static/js/{main.4345d42f.js.map → main.ec7f72e2.js.map} +1 -1
- cognite/neat/config.py +147 -12
- cognite/neat/constants.py +1 -0
- cognite/neat/graph/exceptions.py +1 -2
- cognite/neat/legacy/graph/exceptions.py +1 -2
- cognite/neat/legacy/graph/extractors/_mock_graph_generator.py +1 -2
- cognite/neat/legacy/graph/loaders/_asset_loader.py +8 -13
- cognite/neat/legacy/graph/loaders/_base.py +2 -4
- cognite/neat/legacy/graph/loaders/_exceptions.py +1 -3
- cognite/neat/legacy/graph/loaders/core/rdf_to_assets.py +4 -8
- cognite/neat/legacy/graph/loaders/core/rdf_to_relationships.py +2 -4
- cognite/neat/legacy/graph/loaders/rdf_to_dms.py +2 -4
- cognite/neat/legacy/graph/loaders/validator.py +1 -1
- cognite/neat/legacy/graph/transformations/transformer.py +1 -2
- cognite/neat/legacy/rules/exporters/_rules2dms.py +1 -2
- cognite/neat/legacy/rules/exporters/_validation.py +4 -8
- cognite/neat/legacy/rules/importers/_base.py +0 -4
- cognite/neat/legacy/rules/importers/_dms2rules.py +0 -2
- cognite/neat/legacy/rules/models/rdfpath.py +1 -2
- cognite/neat/legacy/workflows/examples/Export_DMS/workflow.yaml +89 -0
- cognite/neat/legacy/workflows/examples/Export_Rules_to_Ontology/workflow.yaml +152 -0
- cognite/neat/legacy/workflows/examples/Extract_DEXPI_Graph_and_Export_Rules/workflow.yaml +139 -0
- cognite/neat/legacy/workflows/examples/Extract_RDF_Graph_and_Generate_Assets/workflow.yaml +270 -0
- cognite/neat/legacy/workflows/examples/Import_DMS/workflow.yaml +65 -0
- cognite/neat/legacy/workflows/examples/Ontology_to_Data_Model/workflow.yaml +116 -0
- cognite/neat/legacy/workflows/examples/Validate_Rules/workflow.yaml +67 -0
- cognite/neat/legacy/workflows/examples/Validate_Solution_Model/workflow.yaml +64 -0
- cognite/neat/legacy/workflows/examples/Visualize_Data_Model_Using_Mock_Graph/workflow.yaml +95 -0
- cognite/neat/legacy/workflows/examples/Visualize_Semantic_Data_Model/workflow.yaml +111 -0
- cognite/neat/rules/exporters/_rules2excel.py +2 -2
- cognite/neat/rules/exporters/_validation.py +6 -8
- cognite/neat/rules/importers/_base.py +2 -4
- cognite/neat/rules/importers/_dms2rules.py +2 -4
- cognite/neat/rules/importers/_dtdl2rules/dtdl_importer.py +2 -4
- cognite/neat/rules/importers/_dtdl2rules/spec.py +2 -4
- cognite/neat/rules/importers/_owl2rules/_owl2rules.py +2 -4
- cognite/neat/rules/importers/_spreadsheet2rules.py +4 -8
- cognite/neat/rules/importers/_yaml2rules.py +2 -4
- cognite/neat/rules/issues/dms.py +2 -4
- cognite/neat/rules/issues/formatters.py +3 -1
- cognite/neat/rules/models/entities.py +1 -2
- cognite/neat/rules/models/rdfpath.py +1 -2
- cognite/neat/rules/models/rules/_dms_architect_rules.py +2 -1
- cognite/neat/rules/models/rules/_dms_rules_write.py +11 -22
- cognite/neat/utils/cdf_loaders/_data_modeling.py +3 -1
- cognite/neat/utils/cdf_loaders/_ingestion.py +2 -4
- cognite/neat/utils/spreadsheet.py +2 -4
- cognite/neat/utils/utils.py +2 -4
- cognite/neat/workflows/base.py +5 -5
- cognite/neat/workflows/manager.py +32 -22
- cognite/neat/workflows/model.py +3 -3
- cognite/neat/workflows/steps/lib/__init__.py +0 -7
- cognite/neat/workflows/steps/lib/current/__init__.py +6 -0
- cognite/neat/workflows/steps/lib/{rules_exporter.py → current/rules_exporter.py} +8 -8
- cognite/neat/workflows/steps/lib/{rules_importer.py → current/rules_importer.py} +4 -4
- cognite/neat/workflows/steps/lib/io/__init__.py +1 -0
- cognite/neat/workflows/steps/lib/{v1 → legacy}/graph_contextualization.py +2 -2
- cognite/neat/workflows/steps/lib/{v1 → legacy}/graph_extractor.py +9 -9
- cognite/neat/workflows/steps/lib/{v1 → legacy}/graph_loader.py +9 -9
- cognite/neat/workflows/steps/lib/{v1 → legacy}/graph_store.py +4 -4
- cognite/neat/workflows/steps/lib/{v1 → legacy}/graph_transformer.py +2 -2
- cognite/neat/workflows/steps/lib/{v1 → legacy}/rules_exporter.py +15 -17
- cognite/neat/workflows/steps/lib/{v1 → legacy}/rules_importer.py +7 -7
- cognite/neat/workflows/steps/step_model.py +5 -9
- cognite/neat/workflows/steps_registry.py +20 -11
- {cognite_neat-0.75.8.dist-info → cognite_neat-0.75.9.dist-info}/METADATA +1 -1
- {cognite_neat-0.75.8.dist-info → cognite_neat-0.75.9.dist-info}/RECORD +87 -76
- cognite/neat/app/api/data_classes/configuration.py +0 -121
- /cognite/neat/app/ui/neat-app/build/static/js/{main.4345d42f.js.LICENSE.txt → main.ec7f72e2.js.LICENSE.txt} +0 -0
- /cognite/neat/workflows/steps/lib/{graph_extractor.py → current/graph_extractor.py} +0 -0
- /cognite/neat/workflows/steps/lib/{graph_loader.py → current/graph_loader.py} +0 -0
- /cognite/neat/workflows/steps/lib/{graph_store.py → current/graph_store.py} +0 -0
- /cognite/neat/workflows/steps/lib/{rules_validator.py → current/rules_validator.py} +0 -0
- /cognite/neat/workflows/steps/lib/{io_steps.py → io/io_steps.py} +0 -0
- /cognite/neat/workflows/steps/lib/{v1 → legacy}/__init__.py +0 -0
- {cognite_neat-0.75.8.dist-info → cognite_neat-0.75.9.dist-info}/LICENSE +0 -0
- {cognite_neat-0.75.8.dist-info → cognite_neat-0.75.9.dist-info}/WHEEL +0 -0
- {cognite_neat-0.75.8.dist-info → cognite_neat-0.75.9.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
configs: []
|
|
2
|
+
description: null
|
|
3
|
+
implementation_module: null
|
|
4
|
+
name: Export Rules to Ontology
|
|
5
|
+
steps:
|
|
6
|
+
- complex_configs: {}
|
|
7
|
+
configs: {}
|
|
8
|
+
description: null
|
|
9
|
+
enabled: true
|
|
10
|
+
id: step_trigger
|
|
11
|
+
label: Workflow Trigger
|
|
12
|
+
max_retries: 0
|
|
13
|
+
method: null
|
|
14
|
+
params: {}
|
|
15
|
+
retry_delay: 3
|
|
16
|
+
stype: http_trigger
|
|
17
|
+
system_component_id: null
|
|
18
|
+
transition_to:
|
|
19
|
+
- step_import_excel_rules
|
|
20
|
+
trigger: true
|
|
21
|
+
ui_config:
|
|
22
|
+
pos_x: 480
|
|
23
|
+
pos_y: 45
|
|
24
|
+
- complex_configs: {}
|
|
25
|
+
configs:
|
|
26
|
+
file_name: skos-rules.xlsx
|
|
27
|
+
validation_report_file: rules_validation_report.txt
|
|
28
|
+
validation_report_storage_dir: rules_validation_report
|
|
29
|
+
version: ""
|
|
30
|
+
description: null
|
|
31
|
+
enabled: true
|
|
32
|
+
id: step_import_excel_rules
|
|
33
|
+
label: Import Excel Rules
|
|
34
|
+
max_retries: 0
|
|
35
|
+
method: ImportExcelToRules
|
|
36
|
+
params: {}
|
|
37
|
+
retry_delay: 3
|
|
38
|
+
stype: stdstep
|
|
39
|
+
system_component_id: null
|
|
40
|
+
transition_to:
|
|
41
|
+
- step_export_rules_to_ontology
|
|
42
|
+
trigger: false
|
|
43
|
+
ui_config:
|
|
44
|
+
pos_x: 481
|
|
45
|
+
pos_y: 120
|
|
46
|
+
- complex_configs: {}
|
|
47
|
+
configs:
|
|
48
|
+
ontology_file_path: staging/ontology.ttl
|
|
49
|
+
description: null
|
|
50
|
+
enabled: true
|
|
51
|
+
id: step_export_rules_to_ontology
|
|
52
|
+
label: Export Rules To Ontology
|
|
53
|
+
max_retries: 0
|
|
54
|
+
method: ExportRulesToOntology
|
|
55
|
+
params: {}
|
|
56
|
+
retry_delay: 3
|
|
57
|
+
stype: stdstep
|
|
58
|
+
system_component_id: null
|
|
59
|
+
transition_to:
|
|
60
|
+
- step_export_rules_to_shacle
|
|
61
|
+
trigger: false
|
|
62
|
+
ui_config:
|
|
63
|
+
pos_x: 478
|
|
64
|
+
pos_y: 191
|
|
65
|
+
- complex_configs: {}
|
|
66
|
+
configs:
|
|
67
|
+
db_server_api_root_url: ""
|
|
68
|
+
disk_store_dir: ontology-graph-store
|
|
69
|
+
graph_name: source
|
|
70
|
+
init_procedure: reset
|
|
71
|
+
sparql_query_url: ""
|
|
72
|
+
sparql_update_url: ""
|
|
73
|
+
store_type: oxigraph
|
|
74
|
+
description: null
|
|
75
|
+
enabled: true
|
|
76
|
+
id: step_configure_graph_store
|
|
77
|
+
label: Configure Graph Store
|
|
78
|
+
max_retries: 0
|
|
79
|
+
method: ConfigureGraphStore
|
|
80
|
+
params: {}
|
|
81
|
+
retry_delay: 3
|
|
82
|
+
stype: stdstep
|
|
83
|
+
system_component_id: null
|
|
84
|
+
transition_to:
|
|
85
|
+
- step_load_ontology_to_graph_store
|
|
86
|
+
trigger: false
|
|
87
|
+
ui_config:
|
|
88
|
+
pos_x: 479
|
|
89
|
+
pos_y: 383
|
|
90
|
+
- complex_configs: {}
|
|
91
|
+
configs:
|
|
92
|
+
add_base_iri: "True"
|
|
93
|
+
file_path: staging/ontology.ttl
|
|
94
|
+
mime_type: text/turtle
|
|
95
|
+
description: null
|
|
96
|
+
enabled: true
|
|
97
|
+
id: step_load_ontology_to_graph_store
|
|
98
|
+
label: Load Ontology To Graph Store
|
|
99
|
+
max_retries: 0
|
|
100
|
+
method: ExtractGraphFromRdfFile
|
|
101
|
+
params: {}
|
|
102
|
+
retry_delay: 3
|
|
103
|
+
stype: stdstep
|
|
104
|
+
system_component_id: null
|
|
105
|
+
transition_to:
|
|
106
|
+
- step_load_shacl_to_graph
|
|
107
|
+
trigger: false
|
|
108
|
+
ui_config:
|
|
109
|
+
pos_x: 479
|
|
110
|
+
pos_y: 455
|
|
111
|
+
- complex_configs: {}
|
|
112
|
+
configs:
|
|
113
|
+
file_name: shacl.ttl
|
|
114
|
+
shacl_file_path: staging/shacl.ttl
|
|
115
|
+
storage_dir: staging
|
|
116
|
+
description: null
|
|
117
|
+
enabled: true
|
|
118
|
+
id: step_export_rules_to_shacle
|
|
119
|
+
label: Export Rules to Shacl
|
|
120
|
+
max_retries: 0
|
|
121
|
+
method: ExportRulesToSHACL
|
|
122
|
+
params: {}
|
|
123
|
+
retry_delay: 3
|
|
124
|
+
stype: stdstep
|
|
125
|
+
system_component_id: null
|
|
126
|
+
transition_to:
|
|
127
|
+
- step_configure_graph_store
|
|
128
|
+
trigger: false
|
|
129
|
+
ui_config:
|
|
130
|
+
pos_x: 480
|
|
131
|
+
pos_y: 291
|
|
132
|
+
- complex_configs: {}
|
|
133
|
+
configs:
|
|
134
|
+
add_base_iri: "True"
|
|
135
|
+
file_path: staging/shacl.ttl
|
|
136
|
+
mime_type: text/turtle
|
|
137
|
+
description: null
|
|
138
|
+
enabled: true
|
|
139
|
+
id: step_load_shacl_to_graph
|
|
140
|
+
label: Load SHACL to Graph Store
|
|
141
|
+
max_retries: 0
|
|
142
|
+
method: ExtractGraphFromRdfFile
|
|
143
|
+
params: {}
|
|
144
|
+
retry_delay: 3
|
|
145
|
+
stype: stdstep
|
|
146
|
+
system_component_id: null
|
|
147
|
+
transition_to: []
|
|
148
|
+
trigger: false
|
|
149
|
+
ui_config:
|
|
150
|
+
pos_x: 475
|
|
151
|
+
pos_y: 542
|
|
152
|
+
system_components: []
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
configs: []
|
|
2
|
+
description: null
|
|
3
|
+
implementation_module: null
|
|
4
|
+
name: Extract DEXPI Graph and Export Rules
|
|
5
|
+
steps:
|
|
6
|
+
- complex_configs: {}
|
|
7
|
+
configs: {}
|
|
8
|
+
description: null
|
|
9
|
+
enabled: true
|
|
10
|
+
id: step_trigger
|
|
11
|
+
label: Workflow Trigger
|
|
12
|
+
max_retries: 0
|
|
13
|
+
method: null
|
|
14
|
+
params: {}
|
|
15
|
+
retry_delay: 3
|
|
16
|
+
stype: http_trigger
|
|
17
|
+
system_component_id: null
|
|
18
|
+
transition_to:
|
|
19
|
+
- step_128344
|
|
20
|
+
- step_configure_graph_store
|
|
21
|
+
trigger: true
|
|
22
|
+
ui_config:
|
|
23
|
+
pos_x: 352
|
|
24
|
+
pos_y: 106
|
|
25
|
+
- complex_configs: {}
|
|
26
|
+
configs:
|
|
27
|
+
db_server_api_root_url: ""
|
|
28
|
+
disk_store_dir: dexpi-graph
|
|
29
|
+
graph_name: source
|
|
30
|
+
init_procedure: reset
|
|
31
|
+
sparql_query_url: ""
|
|
32
|
+
sparql_update_url: ""
|
|
33
|
+
store_type: oxigraph
|
|
34
|
+
description: null
|
|
35
|
+
enabled: true
|
|
36
|
+
id: step_configure_graph_store
|
|
37
|
+
label: Graph Store Config
|
|
38
|
+
max_retries: 0
|
|
39
|
+
method: ConfigureGraphStore
|
|
40
|
+
params: {}
|
|
41
|
+
retry_delay: 3
|
|
42
|
+
stype: stdstep
|
|
43
|
+
system_component_id: null
|
|
44
|
+
transition_to:
|
|
45
|
+
- step_download_dexpi_file
|
|
46
|
+
trigger: false
|
|
47
|
+
ui_config:
|
|
48
|
+
pos_x: 353
|
|
49
|
+
pos_y: 176
|
|
50
|
+
- complex_configs: {}
|
|
51
|
+
configs:
|
|
52
|
+
base_namespace: http://purl.org/cognite/neat#
|
|
53
|
+
file_path: source-graphs/depxi_example.xml
|
|
54
|
+
description: null
|
|
55
|
+
enabled: true
|
|
56
|
+
id: step_load_ttl
|
|
57
|
+
label: Extract Graph from DEXPI file
|
|
58
|
+
max_retries: 0
|
|
59
|
+
method: ExtractGraphFromDexpiFile
|
|
60
|
+
params: {}
|
|
61
|
+
retry_delay: 3
|
|
62
|
+
stype: stdstep
|
|
63
|
+
system_component_id: null
|
|
64
|
+
transition_to:
|
|
65
|
+
- infer_rules
|
|
66
|
+
trigger: false
|
|
67
|
+
ui_config:
|
|
68
|
+
pos_x: 354
|
|
69
|
+
pos_y: 344
|
|
70
|
+
- complex_configs: {}
|
|
71
|
+
configs:
|
|
72
|
+
api_url: https://raw.githubusercontent.com/cognitedata/neat/main/tests/data/depxi_example.xml
|
|
73
|
+
auth_mode: none
|
|
74
|
+
http_method: GET
|
|
75
|
+
output_file_path: source-graphs/depxi_example.xml
|
|
76
|
+
password: ""
|
|
77
|
+
response_destination: file
|
|
78
|
+
token: ""
|
|
79
|
+
username: ""
|
|
80
|
+
description: null
|
|
81
|
+
enabled: true
|
|
82
|
+
id: step_download_dexpi_file
|
|
83
|
+
label: Download DISC DEXPI example
|
|
84
|
+
max_retries: 0
|
|
85
|
+
method: DownloadDataFromRestApiToFile
|
|
86
|
+
params: {}
|
|
87
|
+
retry_delay: 3
|
|
88
|
+
stype: stdstep
|
|
89
|
+
system_component_id: null
|
|
90
|
+
transition_to:
|
|
91
|
+
- step_load_ttl
|
|
92
|
+
trigger: false
|
|
93
|
+
ui_config:
|
|
94
|
+
pos_x: 354
|
|
95
|
+
pos_y: 250
|
|
96
|
+
- complex_configs: {}
|
|
97
|
+
configs:
|
|
98
|
+
excel_file_path: rules/inferred-rules.xlsx
|
|
99
|
+
file_name: inferred_transformations.xlsx
|
|
100
|
+
max_number_of_instances: "-1"
|
|
101
|
+
storage_dir: staging
|
|
102
|
+
description: null
|
|
103
|
+
enabled: true
|
|
104
|
+
id: infer_rules
|
|
105
|
+
label: Import/infer Rules from Graph
|
|
106
|
+
max_retries: 0
|
|
107
|
+
method: ImportGraphToRules
|
|
108
|
+
params: {}
|
|
109
|
+
retry_delay: 3
|
|
110
|
+
stype: stdstep
|
|
111
|
+
system_component_id: null
|
|
112
|
+
transition_to:
|
|
113
|
+
- import_inferred_rules
|
|
114
|
+
trigger: false
|
|
115
|
+
ui_config:
|
|
116
|
+
pos_x: 356
|
|
117
|
+
pos_y: 442
|
|
118
|
+
- complex_configs: {}
|
|
119
|
+
configs:
|
|
120
|
+
file_name: inferred-rules.xlsx
|
|
121
|
+
validation_report_file: rules_validation_report.txt
|
|
122
|
+
validation_report_storage_dir: rules_validation_report
|
|
123
|
+
version: ""
|
|
124
|
+
description: null
|
|
125
|
+
enabled: true
|
|
126
|
+
id: import_inferred_rules
|
|
127
|
+
label: Import Inferred Rules
|
|
128
|
+
max_retries: 0
|
|
129
|
+
method: ImportExcelToRules
|
|
130
|
+
params: {}
|
|
131
|
+
retry_delay: 3
|
|
132
|
+
stype: stdstep
|
|
133
|
+
system_component_id: null
|
|
134
|
+
transition_to: []
|
|
135
|
+
trigger: false
|
|
136
|
+
ui_config:
|
|
137
|
+
pos_x: 356
|
|
138
|
+
pos_y: 537
|
|
139
|
+
system_components: []
|
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
configs: []
|
|
2
|
+
description: null
|
|
3
|
+
implementation_module: null
|
|
4
|
+
name: Extract RDF Graph and Generate Assets
|
|
5
|
+
steps:
|
|
6
|
+
- complex_configs: {}
|
|
7
|
+
configs: {}
|
|
8
|
+
description: null
|
|
9
|
+
enabled: true
|
|
10
|
+
id: step_http_trigger
|
|
11
|
+
label: Process trigger
|
|
12
|
+
max_retries: 0
|
|
13
|
+
method: null
|
|
14
|
+
params:
|
|
15
|
+
workflow_start_method: persistent_blocking
|
|
16
|
+
retry_delay: 3
|
|
17
|
+
stype: http_trigger
|
|
18
|
+
system_component_id: null
|
|
19
|
+
transition_to:
|
|
20
|
+
- step_rules_loader
|
|
21
|
+
trigger: true
|
|
22
|
+
ui_config:
|
|
23
|
+
pos_x: 454
|
|
24
|
+
pos_y: 77
|
|
25
|
+
- complex_configs: {}
|
|
26
|
+
configs:
|
|
27
|
+
file_name: Rules-Nordic44-to-TNT.xlsx
|
|
28
|
+
validation_report_file: rules_validation_report.txt
|
|
29
|
+
validation_report_storage_dir: rules_validation_report
|
|
30
|
+
version: ""
|
|
31
|
+
description: null
|
|
32
|
+
enabled: true
|
|
33
|
+
id: step_rules_loader
|
|
34
|
+
label: Rules loader
|
|
35
|
+
max_retries: 0
|
|
36
|
+
method: ImportExcelToRules
|
|
37
|
+
params: {}
|
|
38
|
+
retry_delay: 3
|
|
39
|
+
stype: stdstep
|
|
40
|
+
system_component_id: null
|
|
41
|
+
transition_to:
|
|
42
|
+
- step_234135
|
|
43
|
+
- step_configure_source_graph_store
|
|
44
|
+
trigger: false
|
|
45
|
+
ui_config:
|
|
46
|
+
pos_x: 452
|
|
47
|
+
pos_y: 167
|
|
48
|
+
- complex_configs: {}
|
|
49
|
+
configs:
|
|
50
|
+
add_base_iri: "True"
|
|
51
|
+
file_path: source-graphs/Knowledge-Graph-Nordic44-dirty.xml
|
|
52
|
+
mime_type: application/rdf+xml
|
|
53
|
+
description: null
|
|
54
|
+
enabled: true
|
|
55
|
+
id: step_graph_loader
|
|
56
|
+
label: Extract Graph from RDF File
|
|
57
|
+
max_retries: 0
|
|
58
|
+
method: ExtractGraphFromRdfFile
|
|
59
|
+
params: {}
|
|
60
|
+
retry_delay: 3
|
|
61
|
+
stype: stdstep
|
|
62
|
+
system_component_id: null
|
|
63
|
+
transition_to:
|
|
64
|
+
- step_transform
|
|
65
|
+
trigger: false
|
|
66
|
+
ui_config:
|
|
67
|
+
pos_x: 453
|
|
68
|
+
pos_y: 418
|
|
69
|
+
- complex_configs: {}
|
|
70
|
+
configs:
|
|
71
|
+
cdf_lookup_database: ""
|
|
72
|
+
description: null
|
|
73
|
+
enabled: true
|
|
74
|
+
id: step_transform
|
|
75
|
+
label: Transform graph
|
|
76
|
+
max_retries: 0
|
|
77
|
+
method: TransformSourceToSolutionGraph
|
|
78
|
+
params: {}
|
|
79
|
+
retry_delay: 3
|
|
80
|
+
stype: stdstep
|
|
81
|
+
system_component_id: null
|
|
82
|
+
transition_to: []
|
|
83
|
+
trigger: false
|
|
84
|
+
ui_config:
|
|
85
|
+
pos_x: 453
|
|
86
|
+
pos_y: 500
|
|
87
|
+
- complex_configs: {}
|
|
88
|
+
configs:
|
|
89
|
+
asset_external_id_prefix: ""
|
|
90
|
+
assets_cleanup_type: full
|
|
91
|
+
data_set_id: "2626756768281823"
|
|
92
|
+
description: null
|
|
93
|
+
enabled: true
|
|
94
|
+
id: step_generate_assets
|
|
95
|
+
label: Generate cdf assets
|
|
96
|
+
max_retries: 0
|
|
97
|
+
method: GenerateAssetsFromGraph
|
|
98
|
+
params: {}
|
|
99
|
+
retry_delay: 3
|
|
100
|
+
stype: stdstep
|
|
101
|
+
system_component_id: null
|
|
102
|
+
transition_to:
|
|
103
|
+
- step_generate_relationships
|
|
104
|
+
trigger: false
|
|
105
|
+
ui_config:
|
|
106
|
+
pos_x: 455
|
|
107
|
+
pos_y: 571
|
|
108
|
+
- complex_configs: {}
|
|
109
|
+
configs:
|
|
110
|
+
data_set_id: "2626756768281823"
|
|
111
|
+
relationship_external_id_prefix: ""
|
|
112
|
+
description: null
|
|
113
|
+
enabled: true
|
|
114
|
+
id: step_generate_relationships
|
|
115
|
+
label: Generate relationships
|
|
116
|
+
max_retries: 0
|
|
117
|
+
method: GenerateRelationshipsFromGraph
|
|
118
|
+
params: {}
|
|
119
|
+
retry_delay: 3
|
|
120
|
+
stype: stdstep
|
|
121
|
+
system_component_id: null
|
|
122
|
+
transition_to: []
|
|
123
|
+
trigger: false
|
|
124
|
+
ui_config:
|
|
125
|
+
pos_x: 456
|
|
126
|
+
pos_y: 633
|
|
127
|
+
- complex_configs: {}
|
|
128
|
+
configs:
|
|
129
|
+
db_server_api_root_url: ""
|
|
130
|
+
disk_store_dir: nordic44-graph-store
|
|
131
|
+
graph_name: source
|
|
132
|
+
init_procedure: reset
|
|
133
|
+
sparql_query_url: ""
|
|
134
|
+
sparql_update_url: ""
|
|
135
|
+
store_type: oxigraph
|
|
136
|
+
description: null
|
|
137
|
+
enabled: true
|
|
138
|
+
id: step_configure_source_graph_store
|
|
139
|
+
label: Configure source graph store
|
|
140
|
+
max_retries: 0
|
|
141
|
+
method: ConfigureGraphStore
|
|
142
|
+
params: {}
|
|
143
|
+
retry_delay: 3
|
|
144
|
+
stype: stdstep
|
|
145
|
+
system_component_id: null
|
|
146
|
+
transition_to:
|
|
147
|
+
- step_configure_solution_graph_store
|
|
148
|
+
trigger: false
|
|
149
|
+
ui_config:
|
|
150
|
+
pos_x: 451
|
|
151
|
+
pos_y: 245
|
|
152
|
+
- complex_configs: {}
|
|
153
|
+
configs:
|
|
154
|
+
db_server_api_root_url: ""
|
|
155
|
+
disk_store_dir: solution-graph-store-4
|
|
156
|
+
graph_name: solution
|
|
157
|
+
init_procedure: reset
|
|
158
|
+
sparql_query_url: ""
|
|
159
|
+
sparql_update_url: ""
|
|
160
|
+
store_type: oxigraph
|
|
161
|
+
description: null
|
|
162
|
+
enabled: true
|
|
163
|
+
id: step_configure_solution_graph_store
|
|
164
|
+
label: Configure solution graph store
|
|
165
|
+
max_retries: 0
|
|
166
|
+
method: ConfigureGraphStore
|
|
167
|
+
params: {}
|
|
168
|
+
retry_delay: 3
|
|
169
|
+
stype: stdstep
|
|
170
|
+
system_component_id: null
|
|
171
|
+
transition_to:
|
|
172
|
+
- step_graph_loader
|
|
173
|
+
trigger: false
|
|
174
|
+
ui_config:
|
|
175
|
+
pos_x: 454
|
|
176
|
+
pos_y: 334
|
|
177
|
+
system_components:
|
|
178
|
+
- description: null
|
|
179
|
+
id: grid_management_system
|
|
180
|
+
label: Grid management system
|
|
181
|
+
transition_to:
|
|
182
|
+
- rdf_xml_file
|
|
183
|
+
ui_config:
|
|
184
|
+
pos_x: 171
|
|
185
|
+
pos_y: 6
|
|
186
|
+
- description: null
|
|
187
|
+
id: rdf_xml_file
|
|
188
|
+
label: RDF XML File
|
|
189
|
+
transition_to:
|
|
190
|
+
- graph_db_store
|
|
191
|
+
ui_config:
|
|
192
|
+
pos_x: 170
|
|
193
|
+
pos_y: 103
|
|
194
|
+
- description: null
|
|
195
|
+
id: graph_db_store
|
|
196
|
+
label: OxiGraph source graph_store
|
|
197
|
+
transition_to:
|
|
198
|
+
- transformer
|
|
199
|
+
ui_config:
|
|
200
|
+
pos_x: 240
|
|
201
|
+
pos_y: 177
|
|
202
|
+
- description: null
|
|
203
|
+
id: in_memmory_store
|
|
204
|
+
label: In-memory source graph_store
|
|
205
|
+
transition_to: []
|
|
206
|
+
ui_config:
|
|
207
|
+
pos_x: 73
|
|
208
|
+
pos_y: 175
|
|
209
|
+
- description: null
|
|
210
|
+
id: transformation_rules
|
|
211
|
+
label: Transformation rules
|
|
212
|
+
transition_to:
|
|
213
|
+
- transformer
|
|
214
|
+
ui_config:
|
|
215
|
+
pos_x: 413
|
|
216
|
+
pos_y: 195
|
|
217
|
+
- description: null
|
|
218
|
+
id: cdf_raw_table
|
|
219
|
+
label: Cdf raw lookup table
|
|
220
|
+
transition_to:
|
|
221
|
+
- transformer
|
|
222
|
+
ui_config:
|
|
223
|
+
pos_x: 586
|
|
224
|
+
pos_y: 195
|
|
225
|
+
- description: null
|
|
226
|
+
id: transformer
|
|
227
|
+
label: Transformer
|
|
228
|
+
transition_to:
|
|
229
|
+
- solution_graph
|
|
230
|
+
ui_config:
|
|
231
|
+
pos_x: 237
|
|
232
|
+
pos_y: 329
|
|
233
|
+
- description: null
|
|
234
|
+
id: solution_graph
|
|
235
|
+
label: Solution graph
|
|
236
|
+
transition_to:
|
|
237
|
+
- cdf_classic_exporter
|
|
238
|
+
ui_config:
|
|
239
|
+
pos_x: 237
|
|
240
|
+
pos_y: 405
|
|
241
|
+
- description: null
|
|
242
|
+
id: cdf_classic_exporter
|
|
243
|
+
label: CDF Classic exporter
|
|
244
|
+
transition_to:
|
|
245
|
+
- cdf_classic
|
|
246
|
+
ui_config:
|
|
247
|
+
pos_x: 181
|
|
248
|
+
pos_y: 498
|
|
249
|
+
- description: null
|
|
250
|
+
id: cdf_fdm_exporter
|
|
251
|
+
label: CDF FDM exporter
|
|
252
|
+
transition_to:
|
|
253
|
+
- cdf_fdm
|
|
254
|
+
ui_config:
|
|
255
|
+
pos_x: 345
|
|
256
|
+
pos_y: 498
|
|
257
|
+
- description: null
|
|
258
|
+
id: cdf_classic
|
|
259
|
+
label: CDF Classic (Asset,Relationships)
|
|
260
|
+
transition_to: []
|
|
261
|
+
ui_config:
|
|
262
|
+
pos_x: 182
|
|
263
|
+
pos_y: 586
|
|
264
|
+
- description: null
|
|
265
|
+
id: cdf_fdm
|
|
266
|
+
label: CDF FDM
|
|
267
|
+
transition_to: []
|
|
268
|
+
ui_config:
|
|
269
|
+
pos_x: 347
|
|
270
|
+
pos_y: 586
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
configs: []
|
|
2
|
+
description: null
|
|
3
|
+
implementation_module: null
|
|
4
|
+
name: Import DMS
|
|
5
|
+
steps:
|
|
6
|
+
- complex_configs: {}
|
|
7
|
+
configs:
|
|
8
|
+
Data model id: playground_nordic44:nordic44
|
|
9
|
+
Report formatter: BasicHTML
|
|
10
|
+
Role: information_architect
|
|
11
|
+
description: null
|
|
12
|
+
enabled: true
|
|
13
|
+
id: step_725987
|
|
14
|
+
label: Import DMS
|
|
15
|
+
max_retries: 0
|
|
16
|
+
method: DMSToRules
|
|
17
|
+
params: {}
|
|
18
|
+
retry_delay: 3
|
|
19
|
+
stype: stdstep
|
|
20
|
+
system_component_id: null
|
|
21
|
+
transition_to:
|
|
22
|
+
- step_419138
|
|
23
|
+
trigger: false
|
|
24
|
+
ui_config:
|
|
25
|
+
pos_x: 541
|
|
26
|
+
pos_y: 84
|
|
27
|
+
- complex_configs: {}
|
|
28
|
+
configs:
|
|
29
|
+
Styling: default
|
|
30
|
+
description: null
|
|
31
|
+
enabled: true
|
|
32
|
+
id: step_419138
|
|
33
|
+
label: Create Excel Spreadsheet
|
|
34
|
+
max_retries: 0
|
|
35
|
+
method: RulesToExcel
|
|
36
|
+
params: {}
|
|
37
|
+
retry_delay: 3
|
|
38
|
+
stype: stdstep
|
|
39
|
+
system_component_id: null
|
|
40
|
+
transition_to: []
|
|
41
|
+
trigger: false
|
|
42
|
+
ui_config:
|
|
43
|
+
pos_x: 540
|
|
44
|
+
pos_y: 193
|
|
45
|
+
- complex_configs: {}
|
|
46
|
+
configs: {}
|
|
47
|
+
description: null
|
|
48
|
+
enabled: true
|
|
49
|
+
id: step_431484
|
|
50
|
+
label: Trigger Workflow
|
|
51
|
+
max_retries: 0
|
|
52
|
+
method: null
|
|
53
|
+
params:
|
|
54
|
+
sync: 'false'
|
|
55
|
+
workflow_name: ''
|
|
56
|
+
retry_delay: 3
|
|
57
|
+
stype: http_trigger
|
|
58
|
+
system_component_id: null
|
|
59
|
+
transition_to:
|
|
60
|
+
- step_725987
|
|
61
|
+
trigger: true
|
|
62
|
+
ui_config:
|
|
63
|
+
pos_x: 541
|
|
64
|
+
pos_y: -13
|
|
65
|
+
system_components: []
|