industrial-model 0.1.1__tar.gz → 0.1.2__tar.gz
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.
- {industrial_model-0.1.1 → industrial_model-0.1.2}/PKG-INFO +1 -1
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/cognite_adapters/schemas.py +11 -7
- {industrial_model-0.1.1 → industrial_model-0.1.2}/pyproject.toml +1 -1
- industrial_model-0.1.1/test.json +0 -1
- {industrial_model-0.1.1 → industrial_model-0.1.2}/.gitignore +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/.python-version +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/README.md +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/assets/logo.jpeg +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/__init__.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/cognite_adapters/__init__.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/cognite_adapters/filter_mapper.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/cognite_adapters/optimizer.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/cognite_adapters/query_mapper.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/cognite_adapters/query_result_mapper.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/cognite_adapters/sort_mapper.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/cognite_adapters/utils.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/cognite_adapters/view_mapper.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/config.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/constants.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/engines/__init__.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/engines/async_engine.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/engines/engine.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/models/__init__.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/models/base.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/models/entities.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/py.typed +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/queries/__init__.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/queries/models.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/queries/params.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/statements/__init__.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/statements/expressions.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/utils.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/scripts/build.sh +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/scripts/format.sh +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/scripts/lint.sh +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/tests/__init__.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/tests/cognite-sdk-config.yaml +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/tests/hubs.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/tests/tests_adapter.py +0 -0
- {industrial_model-0.1.1 → industrial_model-0.1.2}/uv.lock +0 -0
{industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/cognite_adapters/schemas.py
RENAMED
|
@@ -22,7 +22,7 @@ def get_schema_properties(
|
|
|
22
22
|
nested_separator: str = NESTED_SEP,
|
|
23
23
|
prefix: str | None = None,
|
|
24
24
|
) -> list[str]:
|
|
25
|
-
data = _get_type_properties(cls
|
|
25
|
+
data = _get_type_properties(cls) or {}
|
|
26
26
|
keys = _flatten_dict_keys(data, None, nested_separator)
|
|
27
27
|
if not prefix:
|
|
28
28
|
return keys
|
|
@@ -31,14 +31,19 @@ def get_schema_properties(
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
def _get_type_properties(
|
|
34
|
-
cls: type[BaseModel], visited_count: defaultdict[type, int]
|
|
34
|
+
cls: type[BaseModel], visited_count: defaultdict[type, int] | None = None
|
|
35
35
|
) -> dict[str, Any] | None:
|
|
36
|
-
if visited_count
|
|
37
|
-
|
|
36
|
+
if visited_count is not None:
|
|
37
|
+
if visited_count[cls] > 2:
|
|
38
|
+
return None
|
|
39
|
+
visited_count[cls] += 1
|
|
38
40
|
|
|
39
41
|
hints = get_type_hints(cls)
|
|
40
42
|
origins = {
|
|
41
|
-
key: _get_field_type(
|
|
43
|
+
key: _get_field_type(
|
|
44
|
+
type_hint,
|
|
45
|
+
visited_count or defaultdict(lambda: 0),
|
|
46
|
+
)
|
|
42
47
|
for key, type_hint in hints.items()
|
|
43
48
|
}
|
|
44
49
|
|
|
@@ -59,7 +64,6 @@ def _get_field_type(
|
|
|
59
64
|
[_cast_base_model(type_hint)], visited_count
|
|
60
65
|
)
|
|
61
66
|
|
|
62
|
-
visited_count[type_hint] += visited_count[type_hint] + 1
|
|
63
67
|
entries: list[type[BaseModel] | None] = []
|
|
64
68
|
for arg in get_args(type_hint):
|
|
65
69
|
if _type_is_list_or_union(arg):
|
|
@@ -118,4 +122,4 @@ def _flatten_dict_keys(
|
|
|
118
122
|
[f"{full_key}{nested_separator}{item}" for item in value]
|
|
119
123
|
)
|
|
120
124
|
|
|
121
|
-
return
|
|
125
|
+
return sorted(paths)
|
industrial_model-0.1.1/test.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
[{"external_id": "OEEV-VAM-NotRunning-2025-03-0100:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-01T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-NotRunning-2025-03-0100:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-NotRunning-2025-03-0106:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-01T12:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-NotRunning-2025-03-0106:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-NotRunning-2025-03-0118:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-02T00:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-NotRunning-2025-03-0118:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-NotRunning-2025-03-0200:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-02T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-NotRunning-2025-03-0200:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-NotRunning-2025-03-0206:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-02T12:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-NotRunning-2025-03-0206:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-NotRunning-2025-03-0218:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-03T00:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-NotRunning-2025-03-0218:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-NotRunning-2025-03-0300:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-03T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-NotRunning-2025-03-0300:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningAboveMDR-2025-03-0100:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-01T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningAboveMDR-2025-03-0100:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-NotRunning-2025-03-0306:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-03T12:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-NotRunning-2025-03-0306:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-NotRunning-2025-03-0318:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-04T00:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-NotRunning-2025-03-0318:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-NotRunning-2025-03-0400:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-04T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-NotRunning-2025-03-0400:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningAboveMDR-2025-03-0200:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-02T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningAboveMDR-2025-03-0200:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-0100:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-01T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-0100:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-NotRunning-2025-03-0406:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-04T12:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-NotRunning-2025-03-0406:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-NotRunning-2025-03-0418:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-05T00:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-NotRunning-2025-03-0418:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningAboveMDR-2025-03-0300:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-03T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningAboveMDR-2025-03-0300:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-NotRunning-2025-03-0500:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-05T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-NotRunning-2025-03-0500:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-NotRunning-2025-03-0506:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-05T12:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-NotRunning-2025-03-0506:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-NotRunning-2025-03-0518:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-06T00:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-NotRunning-2025-03-0518:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-NotRunning-2025-03-0600:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-06T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-NotRunning-2025-03-0600:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningAboveMDR-2025-03-0400:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-04T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningAboveMDR-2025-03-0400:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-0300:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-03T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-0300:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-NoDemand-2025-03-0200:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-02T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-NoDemand-2025-03-0200:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Loading", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Loading-NoDemand", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-NoDemand-2025-03-0300:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-03T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-NoDemand-2025-03-0300:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Loading", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Loading-NoDemand", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-NoDemand-2025-03-0400:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-04T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-NoDemand-2025-03-0400:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Loading", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Loading-NoDemand", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-0200:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-02T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-0200:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-0300:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-03T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-0300:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-0400:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-04T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-0400:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-0800:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-08T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-0800:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-0900:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-09T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-0900:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-NotRunning-2025-03-0806:51:02.460000-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-08T12:51:02Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-NotRunning-2025-03-0806:51:02.460000-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningUnderMDR-2025-03-0600:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-06T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningUnderMDR-2025-03-0600:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningUnderMDR-2025-03-0700:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-07T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningUnderMDR-2025-03-0700:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningUnderMDR-2025-03-0900:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-09T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningUnderMDR-2025-03-0900:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningUnderMDR-2025-03-1100:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-11T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningUnderMDR-2025-03-1100:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningUnderMDR-2025-03-1300:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-13T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningUnderMDR-2025-03-1300:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningUnderMDR-2025-03-1500:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-15T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningUnderMDR-2025-03-1500:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-0400:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-04T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-0400:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-0500:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-05T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-0500:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-0700:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-07T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-0700:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-0800:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-08T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-0800:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-1000:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-10T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-1000:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-1200:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-12T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-1200:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-1300:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-13T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-1300:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-1400:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-14T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-1400:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningAboveMDR-2025-03-1200:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-12T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningAboveMDR-2025-03-1200:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-1300:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-13T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-1300:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-1400:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-14T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-1400:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-1500:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-15T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-1500:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-1600:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-16T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-1600:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-1700:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-17T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-1700:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-1800:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-18T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-1800:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-1800:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-18T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-1800:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningUnderMDR-2025-03-2000:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-20T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningUnderMDR-2025-03-2000:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-1900:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-19T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-1900:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningUnderMDR-2025-03-2200:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-22T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningUnderMDR-2025-03-2200:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningUnderMDR-2025-03-2300:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-23T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningUnderMDR-2025-03-2300:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-2200:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-22T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-2200:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-2200:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-22T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-2200:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-MS1-NotRunning-2025-03-2509:09:54.027000-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-25T14:09:54Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-NotRunning-2025-03-2509:09:54.027000-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningUnderMDR-2025-03-2400:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-24T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningUnderMDR-2025-03-2400:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-MS1-NotRunning-2025-03-2518:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-25T23:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-NotRunning-2025-03-2518:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-2300:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-23T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-2300:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-2300:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-23T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-2300:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-MS1-NotRunning-2025-03-2600:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-26T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-NotRunning-2025-03-2600:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-MS1-NotRunning-2025-03-2606:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-26T11:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-NotRunning-2025-03-2606:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningUnderMDR-2025-03-2500:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-25T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningUnderMDR-2025-03-2500:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-2400:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-24T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-2400:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningUnderMDR-2025-03-2700:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-27T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningUnderMDR-2025-03-2700:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-2600:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-26T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-2600:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningAboveMDR-2025-03-2600:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-26T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningAboveMDR-2025-03-2600:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-MS1-NotRunning-2025-03-2618:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-26T23:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-NotRunning-2025-03-2618:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-MS1-NotRunning-2025-03-2700:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-27T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-NotRunning-2025-03-2700:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-MS1-NotRunning-2025-03-2706:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-27T11:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-NotRunning-2025-03-2706:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-MS1-NotRunning-2025-03-2718:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-27T23:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-NotRunning-2025-03-2718:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-MS1-NotRunning-2025-03-2800:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-28T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-NotRunning-2025-03-2800:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-MS1-NotRunning-2025-03-2806:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-28T11:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-NotRunning-2025-03-2806:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-MS1-NotRunning-2025-03-2818:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-28T23:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-NotRunning-2025-03-2818:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-MS1-NotRunning-2025-03-2900:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-29T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-NotRunning-2025-03-2900:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-MS1-NotRunning-2025-03-2906:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-29T11:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-NotRunning-2025-03-2906:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-MS1-StartingUp-2025-03-2908:59:28.779000-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-29T13:59:28Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-StartingUp-2025-03-2908:59:28.779000-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Availability-ProductAndSupplyOptimization", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-MS1-StartingUp-2025-03-2918:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-29T23:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-StartingUp-2025-03-2918:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Availability-ProductAndSupplyOptimization", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningUnderMDR-2025-03-2800:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-28T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningUnderMDR-2025-03-2800:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-2700:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-27T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-2700:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-2700:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-27T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-2700:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-MS1-StartingUp-2025-03-3000:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-30T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-StartingUp-2025-03-3000:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Availability-ProductAndSupplyOptimization", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-2800:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-28T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-2800:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-2900:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-29T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-2900:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningUnderMDR-2025-03-3000:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-30T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningUnderMDR-2025-03-3000:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-3000:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-30T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-3000:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-3000:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-30T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-3000:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-3100:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-31T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-3100:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningUnderMDR-2025-04-0100:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-04-01T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningUnderMDR-2025-04-0100:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-MS1-RunningAboveMDR-2025-04-0100:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-04-01T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-RunningAboveMDR-2025-04-0100:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-VAM-RunningUnderMDR-2025-04-0300:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-04-03T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKVAM", "space": "REF-COR-ALL-DAT", "name": "CLKVAM", "description": "Vinyl Acetate Monomer"}, "ref_reporting_line": {"external_id": "RLN-CLKVAMVAM", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002030", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-VAM-RunningUnderMDR-2025-04-0300:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": {"external_id": "OEEDIS-electricalEquipment", "space": "INO-COR-ALL-DML", "name": null, "description": null}}]}, {"external_id": "OEEV-MS1-RunningAboveMDR-2025-04-0300:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-04-03T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-RunningAboveMDR-2025-04-0300:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-MS1-RunningAboveMDR-2025-04-0400:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-04-04T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-RunningAboveMDR-2025-04-0400:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}, {"external_id": "OEED-RunningAboveMDR-850571", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Loading", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Loading-NotScheduledtoRun", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": {"external_id": "OEEDIS-fixedEquipment", "space": "INO-COR-ALL-DML", "name": null, "description": null}}]}, {"external_id": "OEEV-MS1-RunningAboveMDR-2025-04-0500:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-04-05T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKMS1", "space": "REF-COR-ALL-DAT", "name": "CLKMS1", "description": "Methanol"}, "ref_reporting_line": {"external_id": "RLN-CLKMS1MS1", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50001481", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-MS1-RunningAboveMDR-2025-04-0500:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": {"external_id": "OEEDIS-rotatingEquipment", "space": "INO-COR-ALL-DML", "name": null, "description": null}}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-0200:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-02T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-0200:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-0600:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-06T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-0600:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-0900:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-09T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-0900:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-1100:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-11T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-1100:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-2000:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-20T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-2000:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-2500:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-25T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-2500:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-2800:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-28T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-2800:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAN-RunningUnderScheduledRate-2025-03-3100:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-31T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAN-RunningUnderScheduledRate-2025-03-3100:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningAboveMDR-2025-03-1300:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-13T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningAboveMDR-2025-03-1300:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningAboveMDR-2025-03-2700:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-27T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningAboveMDR-2025-03-2700:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-0500:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-05T06:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-0500:00:00-06:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-1000:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-10T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-1000:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-1500:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-15T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-1500:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-1900:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-19T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-1900:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-2400:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-24T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-2400:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-03-2900:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-03-29T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-03-2900:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-AAS-RunningUnderScheduledRate-2025-04-0100:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-04-01T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASAAS", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000501", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-AAS-RunningUnderScheduledRate-2025-04-0100:00:00-05:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": {"external_id": "OEPR-Performance-RateLoss", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l1": {"external_id": "OEPR-Performance-RateLoss-Processcontrol", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": {"external_id": "OEEDIS-fixedEquipment", "space": "INO-COR-ALL-DML", "name": null, "description": null}}]}, {"external_id": "OEEV-RLN-CLKAASMAC-AlefeTeste-2025-05-0405:00:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-05-04T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASMAC", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002006", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-RLN-CLKAASMAC-AlefeTeste-2025-05-0405:00:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Quality", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-RLN-CLKAASMAC-AlefeTeste-2025-05-1205:00:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-05-12T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAS", "space": "REF-COR-ALL-DAT", "name": "CLKAAS", "description": "Acetic Acid South"}, "ref_reporting_line": {"external_id": "RLN-CLKAASMAC", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50002002", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-RLN-CLKAASMAC-AlefeTeste-2025-05-1205:00:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Availability", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-RLN-CLKAANAAN-AlefeNovo-2025-05-1107:00:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-05-11T07:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000007", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-RLN-CLKAANAAN-AlefeNovo-2025-05-1107:00:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Quality", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-RLN-CLKAANAAN-AlefeNovo-2025-05-1405:00:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-05-14T05:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000007", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-RLN-CLKAANAAN-AlefeNovo-2025-05-1405:00:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-RLN-CLKAANAAN-AlefeTeste-2025-05-1423:00:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-05-14T23:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000054", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": []}, {"external_id": "OEEV-RLN-CLKAANAAN-ALot of Things-2025-05-1423:00:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-05-14T23:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000054", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-RLN-CLKAANAAN-ALot of Things-2025-05-1423:00:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Performance", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}, {"external_id": "OEEV-RLN-CLKAANAAN-ALot of Things-2025-05-1520:00:00", "space": "OEE-CLK-ALL-DAT", "start_date_time": "2025-05-15T20:00:00Z", "ref_site": {"external_id": "STS-CLK", "space": "REF-COR-ALL-DAT", "name": "Clear Lake", "description": "Clear Lake, TX, USA", "time_zone": {"external_id": "TZO-America/Chicago", "space": "REF-COR-ALL-DAT", "name": "America/Chicago", "description": "-06:00"}}, "ref_unit": {"external_id": "UNT-CLKAAN", "space": "REF-COR-ALL-DAT", "name": "CLKAAN", "description": "Acetic Acid North"}, "ref_reporting_line": {"external_id": "RLN-CLKAANAAN", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_reporting_location": null, "ref_product": null, "ref_material": {"external_id": "M_50000485", "space": "SAP-COR-ALL-DAT", "name": null, "description": null}, "ref_process_type": {"external_id": "PTY-CON", "space": "REF-COR-ALL-DAT", "name": null, "description": null}, "ref_oee_event_detail": [{"external_id": "OEED-RLN-CLKAANAAN-ALot of Things-2025-05-1520:00:00", "space": "OEE-CLK-ALL-DAT", "ref_metric_code": {"external_id": "OEPR-Quality", "space": "OEE-COR-ALL-DAT", "name": null, "description": null}, "ref_event_code": null, "ref_sub_category_l1": null, "ref_sub_category_l2": null, "ref_sub_category_l3": null, "ref_sub_category_l4": null, "ref_sub_category_l5": null, "ref_equipment": null, "ref_discipline": null}]}]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/cognite_adapters/__init__.py
RENAMED
|
File without changes
|
{industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/cognite_adapters/filter_mapper.py
RENAMED
|
File without changes
|
{industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/cognite_adapters/optimizer.py
RENAMED
|
File without changes
|
{industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/cognite_adapters/query_mapper.py
RENAMED
|
File without changes
|
|
File without changes
|
{industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/cognite_adapters/sort_mapper.py
RENAMED
|
File without changes
|
{industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/cognite_adapters/utils.py
RENAMED
|
File without changes
|
{industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/cognite_adapters/view_mapper.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{industrial_model-0.1.1 → industrial_model-0.1.2}/industrial_model/statements/expressions.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|