industrial-model 0.1.1__tar.gz → 0.1.3__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.
Files changed (42) hide show
  1. industrial_model-0.1.3/PKG-INFO +166 -0
  2. industrial_model-0.1.3/README.md +146 -0
  3. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/cognite_adapters/schemas.py +11 -7
  4. {industrial_model-0.1.1 → industrial_model-0.1.3}/pyproject.toml +1 -1
  5. industrial_model-0.1.1/PKG-INFO +0 -23
  6. industrial_model-0.1.1/README.md +0 -3
  7. industrial_model-0.1.1/assets/logo.jpeg +0 -0
  8. industrial_model-0.1.1/test.json +0 -1
  9. {industrial_model-0.1.1 → industrial_model-0.1.3}/.gitignore +0 -0
  10. {industrial_model-0.1.1 → industrial_model-0.1.3}/.python-version +0 -0
  11. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/__init__.py +0 -0
  12. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/cognite_adapters/__init__.py +0 -0
  13. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/cognite_adapters/filter_mapper.py +0 -0
  14. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/cognite_adapters/optimizer.py +0 -0
  15. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/cognite_adapters/query_mapper.py +0 -0
  16. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/cognite_adapters/query_result_mapper.py +0 -0
  17. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/cognite_adapters/sort_mapper.py +0 -0
  18. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/cognite_adapters/utils.py +0 -0
  19. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/cognite_adapters/view_mapper.py +0 -0
  20. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/config.py +0 -0
  21. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/constants.py +0 -0
  22. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/engines/__init__.py +0 -0
  23. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/engines/async_engine.py +0 -0
  24. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/engines/engine.py +0 -0
  25. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/models/__init__.py +0 -0
  26. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/models/base.py +0 -0
  27. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/models/entities.py +0 -0
  28. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/py.typed +0 -0
  29. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/queries/__init__.py +0 -0
  30. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/queries/models.py +0 -0
  31. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/queries/params.py +0 -0
  32. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/statements/__init__.py +0 -0
  33. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/statements/expressions.py +0 -0
  34. {industrial_model-0.1.1 → industrial_model-0.1.3}/industrial_model/utils.py +0 -0
  35. {industrial_model-0.1.1 → industrial_model-0.1.3}/scripts/build.sh +0 -0
  36. {industrial_model-0.1.1 → industrial_model-0.1.3}/scripts/format.sh +0 -0
  37. {industrial_model-0.1.1 → industrial_model-0.1.3}/scripts/lint.sh +0 -0
  38. {industrial_model-0.1.1 → industrial_model-0.1.3}/tests/__init__.py +0 -0
  39. {industrial_model-0.1.1 → industrial_model-0.1.3}/tests/cognite-sdk-config.yaml +0 -0
  40. {industrial_model-0.1.1 → industrial_model-0.1.3}/tests/hubs.py +0 -0
  41. {industrial_model-0.1.1 → industrial_model-0.1.3}/tests/tests_adapter.py +0 -0
  42. {industrial_model-0.1.1 → industrial_model-0.1.3}/uv.lock +0 -0
@@ -0,0 +1,166 @@
1
+ Metadata-Version: 2.4
2
+ Name: industrial-model
3
+ Version: 0.1.3
4
+ Summary: Industrial Model ORM
5
+ Author-email: Lucas Alves <lucasrosaalves@gmail.com>
6
+ Classifier: Programming Language :: Python
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Programming Language :: Python :: 3 :: Only
9
+ Classifier: Programming Language :: Python :: 3.11
10
+ Classifier: Programming Language :: Python :: 3.12
11
+ Classifier: Programming Language :: Python :: 3.13
12
+ Classifier: Topic :: Database
13
+ Classifier: Topic :: Database :: Database Engines/Servers
14
+ Classifier: Typing :: Typed
15
+ Requires-Python: >=3.11
16
+ Requires-Dist: anyio>=4.9.0
17
+ Requires-Dist: cognite-sdk>=7.75.0
18
+ Requires-Dist: pydantic>=2.11.4
19
+ Description-Content-Type: text/markdown
20
+
21
+ # 📦 industrial-model
22
+
23
+ `industrial-model` is a Python ORM-style abstraction for querying views and data models in Cognite Data Fusion (CDF). It provides a declarative and type-safe way to model CDF views using `pydantic`, build queries, and interact with the CDF API in a Pythonic fashion.
24
+
25
+ ---
26
+
27
+ ## ✨ Features
28
+
29
+ - Define CDF views using Pydantic-style classes.
30
+ - Build complex queries using fluent and composable filters.
31
+ - Easily fetch data using standard or paginated query execution.
32
+ - Automatic alias and field transformation support.
33
+ - Extensible and test-friendly design.
34
+
35
+ ---
36
+
37
+ ## 📦 Installation
38
+
39
+ ```bash
40
+ pip install industrial-model
41
+ ```
42
+
43
+ ---
44
+
45
+ ## 🛠️ Usage Example
46
+
47
+ ```python
48
+ import datetime
49
+ from cognite.client import CogniteClient
50
+ from pydantic import Field
51
+
52
+ from industrial_model import (
53
+ AsyncEngine,
54
+ DataModelId,
55
+ Engine,
56
+ ViewInstance,
57
+ select,
58
+ col,
59
+ and_,
60
+ or_,
61
+ )
62
+
63
+ # Define entities (view instances)
64
+
65
+
66
+ class Car(ViewInstance):
67
+ name: str
68
+
69
+
70
+ class Region(ViewInstance):
71
+ name: str
72
+
73
+
74
+ class Country(ViewInstance):
75
+ name: str
76
+ region: Region = Field(
77
+ alias="regionRef"
78
+ ) # Maps property to field if names differ
79
+
80
+
81
+ class Person(ViewInstance):
82
+ name: str
83
+ birthday: datetime.date
84
+ livesIn: Country
85
+ cars: list[Car]
86
+
87
+
88
+ # Initialize Cognite client and data model engine
89
+
90
+ cognite_client = CogniteClient()
91
+
92
+ data_model_id = DataModelId(
93
+ external_id="IndustrialData",
94
+ space="IndustralSpaceType",
95
+ version="v1"
96
+ )
97
+
98
+ engine = Engine(cognite_client, data_model_id)
99
+ async_engine = AsyncEngine(cognite_client, data_model_id) # Optional async engine
100
+
101
+
102
+ # -----------------------------------
103
+ # Example Queries
104
+ # -----------------------------------
105
+
106
+ # 1. Basic query: Find person named "Lucas"
107
+ statement = select(Person).where(Person.name == "Lucas").limit(1)
108
+ result = engine.query(statement)
109
+
110
+
111
+ # 2. Combined filter with AND/OR
112
+ statement = select(Person).where(
113
+ (Person.name == "Lucas") & (Person.birthday > datetime.date(2023, 1, 2)) |
114
+ (Person.name == "Another")
115
+ )
116
+ result = engine.query(statement)
117
+
118
+
119
+ # 3. Same logic using `col()` expressions
120
+ statement = select(Person).where(
121
+ (col("name").equals_("Lucas")) &
122
+ (col(Person.birthday).gt_("2023-01-02")) |
123
+ (Person.name == "Another")
124
+ )
125
+ result = engine.query(statement)
126
+
127
+
128
+ # 4. Nested filtering using relationships
129
+ statement = select(Person).where(
130
+ or_(
131
+ col(Person.livesIn).nested_(Country.name == "usa"),
132
+ and_(
133
+ col(Person.livesIn).nested_(col(Country.name).equals_("bra")),
134
+ col(Person.birthday).equals_("2023-01-01")
135
+ )
136
+ )
137
+ )
138
+ result = engine.query(statement)
139
+
140
+
141
+ # 5. Paginated query with sorting and cursor
142
+ statement = (
143
+ select(Person)
144
+ .where(
145
+ (Person.name == "Lucas") &
146
+ (Person.birthday > datetime.date(2023, 1, 2)) |
147
+ (Person.name == "Another")
148
+ )
149
+ .limit(10)
150
+ .cursor("NEXT CURSOR")
151
+ .asc(Person.name)
152
+ )
153
+ result = engine.query(statement)
154
+
155
+
156
+ # 6. Fetch all pages of a query
157
+ statement = select(Person).where(
158
+ (Person.name == "Lucas") &
159
+ (Person.birthday > datetime.date(2023, 1, 2)) |
160
+ (Person.name == "Another")
161
+ )
162
+ all_results = engine.query_all_pages(statement)
163
+
164
+ ```
165
+
166
+ ---
@@ -0,0 +1,146 @@
1
+ # 📦 industrial-model
2
+
3
+ `industrial-model` is a Python ORM-style abstraction for querying views and data models in Cognite Data Fusion (CDF). It provides a declarative and type-safe way to model CDF views using `pydantic`, build queries, and interact with the CDF API in a Pythonic fashion.
4
+
5
+ ---
6
+
7
+ ## ✨ Features
8
+
9
+ - Define CDF views using Pydantic-style classes.
10
+ - Build complex queries using fluent and composable filters.
11
+ - Easily fetch data using standard or paginated query execution.
12
+ - Automatic alias and field transformation support.
13
+ - Extensible and test-friendly design.
14
+
15
+ ---
16
+
17
+ ## 📦 Installation
18
+
19
+ ```bash
20
+ pip install industrial-model
21
+ ```
22
+
23
+ ---
24
+
25
+ ## 🛠️ Usage Example
26
+
27
+ ```python
28
+ import datetime
29
+ from cognite.client import CogniteClient
30
+ from pydantic import Field
31
+
32
+ from industrial_model import (
33
+ AsyncEngine,
34
+ DataModelId,
35
+ Engine,
36
+ ViewInstance,
37
+ select,
38
+ col,
39
+ and_,
40
+ or_,
41
+ )
42
+
43
+ # Define entities (view instances)
44
+
45
+
46
+ class Car(ViewInstance):
47
+ name: str
48
+
49
+
50
+ class Region(ViewInstance):
51
+ name: str
52
+
53
+
54
+ class Country(ViewInstance):
55
+ name: str
56
+ region: Region = Field(
57
+ alias="regionRef"
58
+ ) # Maps property to field if names differ
59
+
60
+
61
+ class Person(ViewInstance):
62
+ name: str
63
+ birthday: datetime.date
64
+ livesIn: Country
65
+ cars: list[Car]
66
+
67
+
68
+ # Initialize Cognite client and data model engine
69
+
70
+ cognite_client = CogniteClient()
71
+
72
+ data_model_id = DataModelId(
73
+ external_id="IndustrialData",
74
+ space="IndustralSpaceType",
75
+ version="v1"
76
+ )
77
+
78
+ engine = Engine(cognite_client, data_model_id)
79
+ async_engine = AsyncEngine(cognite_client, data_model_id) # Optional async engine
80
+
81
+
82
+ # -----------------------------------
83
+ # Example Queries
84
+ # -----------------------------------
85
+
86
+ # 1. Basic query: Find person named "Lucas"
87
+ statement = select(Person).where(Person.name == "Lucas").limit(1)
88
+ result = engine.query(statement)
89
+
90
+
91
+ # 2. Combined filter with AND/OR
92
+ statement = select(Person).where(
93
+ (Person.name == "Lucas") & (Person.birthday > datetime.date(2023, 1, 2)) |
94
+ (Person.name == "Another")
95
+ )
96
+ result = engine.query(statement)
97
+
98
+
99
+ # 3. Same logic using `col()` expressions
100
+ statement = select(Person).where(
101
+ (col("name").equals_("Lucas")) &
102
+ (col(Person.birthday).gt_("2023-01-02")) |
103
+ (Person.name == "Another")
104
+ )
105
+ result = engine.query(statement)
106
+
107
+
108
+ # 4. Nested filtering using relationships
109
+ statement = select(Person).where(
110
+ or_(
111
+ col(Person.livesIn).nested_(Country.name == "usa"),
112
+ and_(
113
+ col(Person.livesIn).nested_(col(Country.name).equals_("bra")),
114
+ col(Person.birthday).equals_("2023-01-01")
115
+ )
116
+ )
117
+ )
118
+ result = engine.query(statement)
119
+
120
+
121
+ # 5. Paginated query with sorting and cursor
122
+ statement = (
123
+ select(Person)
124
+ .where(
125
+ (Person.name == "Lucas") &
126
+ (Person.birthday > datetime.date(2023, 1, 2)) |
127
+ (Person.name == "Another")
128
+ )
129
+ .limit(10)
130
+ .cursor("NEXT CURSOR")
131
+ .asc(Person.name)
132
+ )
133
+ result = engine.query(statement)
134
+
135
+
136
+ # 6. Fetch all pages of a query
137
+ statement = select(Person).where(
138
+ (Person.name == "Lucas") &
139
+ (Person.birthday > datetime.date(2023, 1, 2)) |
140
+ (Person.name == "Another")
141
+ )
142
+ all_results = engine.query_all_pages(statement)
143
+
144
+ ```
145
+
146
+ ---
@@ -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, defaultdict(lambda: 0)) or {}
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[cls] > 3:
37
- return None
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(type_hint, visited_count)
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 list(paths)
125
+ return sorted(paths)
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "industrial-model"
3
- version = "0.1.1"
3
+ version = "0.1.3"
4
4
  description = "Industrial Model ORM"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -1,23 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: industrial-model
3
- Version: 0.1.1
4
- Summary: Industrial Model ORM
5
- Author-email: Lucas Alves <lucasrosaalves@gmail.com>
6
- Classifier: Programming Language :: Python
7
- Classifier: Programming Language :: Python :: 3
8
- Classifier: Programming Language :: Python :: 3 :: Only
9
- Classifier: Programming Language :: Python :: 3.11
10
- Classifier: Programming Language :: Python :: 3.12
11
- Classifier: Programming Language :: Python :: 3.13
12
- Classifier: Topic :: Database
13
- Classifier: Topic :: Database :: Database Engines/Servers
14
- Classifier: Typing :: Typed
15
- Requires-Python: >=3.11
16
- Requires-Dist: anyio>=4.9.0
17
- Requires-Dist: cognite-sdk>=7.75.0
18
- Requires-Dist: pydantic>=2.11.4
19
- Description-Content-Type: text/markdown
20
-
21
- # capybara
22
-
23
- ![My Image](./assets/logo.jpeg)
@@ -1,3 +0,0 @@
1
- # capybara
2
-
3
- ![My Image](./assets/logo.jpeg)
Binary file
@@ -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}]}]